summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2012-12-17 12:35:58 +1300
committerRobert Collins <robertc@robertcollins.net>2012-12-17 12:35:58 +1300
commitf65ed27b3f8b073d59f696f56c776d8da494745b (patch)
tree90de7c98bbc2f4bbe6ccea7ded24c00db9b4bd1f
parent5d88c2ea89004b46eee7837780c030bd020db809 (diff)
downloadfixtures-f65ed27b3f8b073d59f696f56c776d8da494745b.tar.gz
* pydoc is recommended as a source of info about fixtures.
(Robert Collins, #812845)
-rw-r--r--NEWS3
-rw-r--r--README3
2 files changed, 6 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index f8a3ac8..23636f5 100644
--- a/NEWS
+++ b/NEWS
@@ -18,6 +18,9 @@ CHANGES
* ``FakeLogger`` has been split out into a ``LogHandler`` fixture that can
inject arbitrary handlers, giving more flexability. (Jonathan Lange)
+* pydoc is recommended as a source of info about fixtures.
+ (Robert Collins, #812845)
+
* The docs for fixtures have been updated to cover the full API.
(Robert Collins, #1071649)
diff --git a/README b/README
index 9b81b1f..cc51615 100644
--- a/README
+++ b/README
@@ -70,6 +70,9 @@ A Fixture represents some state. Each fixture has attributes on it that are
specific to the fixture. For instance, a fixture representing a directory that
can be used for temporary files might have a attribute 'path'.
+Most fixtures have complete ``pydoc`` documentation, so be sure to check
+``pydoc fixtures`` for usage information.
+
Creating Fixtures
=================