diff examples/project/zoo/test_foo.py @ 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
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/project/zoo/test_foo.py	Thu Aug 28 10:18:23 2008 -0400
@@ -0,0 +1,12 @@
+
+def test_regular_test_method():
+    ''' This is just a stub for a regular test method'''
+    pass
+
+def blah():
+    '''
+    This is a doctest that might get skipped
+
+    >>> 5 + 5 
+    10
+    '''