mirror of
https://github.com/python/cpython.git
synced 2024-11-25 19:03:49 +08:00
Exercise Jim Fulton's new doctest extension for running doctests in a
unittest environment. Since his extension finds docstrings in private functions, it exposed a bug in the difflib doctests.
This commit is contained in:
parent
83325e9087
commit
43d790c087
@ -1,6 +1,7 @@
|
||||
import difflib
|
||||
from test import test_support
|
||||
import unittest
|
||||
import doctest
|
||||
|
||||
class TestSFbugs(unittest.TestCase):
|
||||
|
||||
@ -11,5 +12,7 @@ class TestSFbugs(unittest.TestCase):
|
||||
self.assertEqual(s.quick_ratio(), 1)
|
||||
self.assertEqual(s.real_quick_ratio(), 1)
|
||||
|
||||
test_support.run_unittest(TestSFbugs)
|
||||
test_support.run_doctest(difflib)
|
||||
Doctests = doctest.DocTestSuite(difflib)
|
||||
|
||||
test_support.run_unittest(TestSFbugs, Doctests)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user