# HG changeset patch # User Jeff Hammel # Date 1355450739 28800 # Node ID 2e4ed8e0a103406514571a2393ce0d891f52eee3 # Parent 4bed1424bb3f8e6ce4f30e95674a31ca2d1014f6 passing pretend tests diff -r 4bed1424bb3f -r 2e4ed8e0a103 tests/doctest.txt --- a/tests/doctest.txt Wed Dec 12 18:58:08 2012 -0800 +++ b/tests/doctest.txt Thu Dec 13 18:05:39 2012 -0800 @@ -3,5 +3,5 @@ The obligatory imports: - >>> import wsgraph.model import MemoryCache + >>> from wsgraph.model import MemoryCache diff -r 4bed1424bb3f -r 2e4ed8e0a103 tests/test.py --- a/tests/test.py Wed Dec 12 18:58:08 2012 -0800 +++ b/tests/test.py Thu Dec 13 18:05:39 2012 -0800 @@ -19,9 +19,6 @@ directory = os.path.dirname(os.path.abspath(__file__)) extraglobs = {'here': directory} doctest_args = dict(extraglobs=extraglobs, raise_on_error=raise_on_error) - doctest_args['optionsflags'] = doctest.ELLIPSIS - if report_first: - doctest_args['optionflags'] |= doctest.REPORT_ONLY_FIRST_FAILURE # gather tests tests = [test for test in os.listdir(directory)