summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2010-11-15 06:43:44 +1300
committerRobert Collins <robertc@robertcollins.net>2010-11-15 06:43:44 +1300
commitb9d27a1c14775430901346059dd60f12b248c8f6 (patch)
tree14a46445be858ea58c7cf34c7cc7ec011937b061 /README
parent3d5fe00351af8d185bf38bc114c2be59f358f681 (diff)
downloadtestresources-b9d27a1c14775430901346059dd60f12b248c8f6.tar.gz
* Added ``testresources.FixtureResource`` to wrap ``fixtures.Fixture``
instances. (Robert Collins)
Diffstat (limited to 'README')
-rw-r--r--README14
1 files changed, 9 insertions, 5 deletions
diff --git a/README b/README
index 3dbdfa5..e1c9cea 100644
--- a/README
+++ b/README
@@ -25,14 +25,18 @@ provide test optimisation where expensive common resources are needed for test
cases - for example sample working trees for VCS systems, reference databases
for enterprise applications, or web servers ... let imagination run wild.
-Dependencies
-============
+Dependencies to build/selftest
+==============================
* Python 2.4+
-* testtools
+* testtools (http://pypi.python.org/pypi/testtools/)
+* fixtures (http://pypi.python.org/pypi/fixtures)
+
+Dependencies to use testresources
+=================================
-Note that testtools is required for *running* the tests for testresources. You
-can use testresources in your own app without using testtools.
+* Python 2.4+
+* fixtures (http://pypi.python.org/pypi/fixtures)
How testresources Works