diff examples/README.TXT @ 4:20bca08c0828

ignore .orig files from hg revert added a test module with doctests in it
author Victor Ng <victor@monkeybean.ca>
date Thu, 28 Aug 2008 10:18:23 -0400
parents b761c26773a3
children 8d0793b2358b
line wrap: on
line diff
--- a/examples/README.TXT	Thu Aug 28 10:10:10 2008 -0400
+++ b/examples/README.TXT	Thu Aug 28 10:18:23 2008 -0400
@@ -1,18 +1,25 @@
 If you change directory into the 'project' directory, you should be able  to
 run the nose test runner and get reasonable results.
 
+Note that you *won't* be running your doctests unless you tell nose to do so.
 
-Something like this:
+As usual, you need to tell nose to run doctest test strings in modules that
+contain standard test classes.
+
+A successful run should hit *7* test cases.
 
-    C:\dev\nosedjango\examples\project>nosetests -v --with-django
+    C:\dev\nosedjango\examples\project>nosetests -v --with-django --with-doctest --d
+    octest-tests --doctest-tests
+    Doctest: project.zoo.models ... ok
+    Doctest: project.zoo.models.Zoo ... ok
+    Doctest: project.zoo.models.Zoo.__str__ ... ok
+    Doctest: project.zoo.models.func ... ok
+    This is just a stub for a regular test method ... ok
+    Doctest: project.zoo.test_foo.blah ... ok
     project.tests.test_views.test_view_index ... ok
 
     ----------------------------------------------------------------------
-    Ran 1 test in 0.047s
+    Ran 7 tests in 0.562s
 
     OK
     Destroying test database...
-
-    C:\dev\nosedjango\examples\project>
-
-