Commit 7a8aa8f6 by Chris Jerdonek

Added a code comment with a link to unittest's load_tests protocol.

parent 5b428cd7
...@@ -25,9 +25,12 @@ text_file_paths = ['README.rst'] ...@@ -25,9 +25,12 @@ text_file_paths = ['README.rst']
# The following load_tests() function implements unittests's load_tests # The following load_tests() function implements unittests's load_tests
# protocol added in Python 2.7. Using this protocol allows us to # protocol added in Python 2.7:
# include the doctests in test runs without the use of nose, for example #
# when using Distribute's test as in the following: # http://docs.python.org/library/unittest.html#load-tests-protocol
#
# Using this protocol lets us include the doctests in test runs without
# using nose, for example when using Distribute's test as in the following:
# #
# python setup.py test # python setup.py test
# #
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment