summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 9502911..bc0778a 100644
--- a/README.rst
+++ b/README.rst
@@ -143,7 +143,7 @@ For instance::
def clean(self, resource):
shutil.rmtree(resource)
- def make(self):
+ def make(self, dependency_resources):
return tempfile.mkdtemp()
def isDirty(self, resource):
@@ -169,10 +169,12 @@ returns None, the framework does *not* consider this an error: be sure to always
return a valid resource, or raise an error. Error handling hasn't been heavily
exercised, but any bugs in this area will be promptly dealt with.
-A sample TestResourceManager can be found in the doc/ folder.
+A sample_ TestResourceManager can be found in the doc/ folder.
See pydoc testresources.TestResourceManager for details.
+.. _sample: doc/example.py
+
testresources.GenericResource
-----------------------------