diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-05-05 09:51:16 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-05-05 09:51:16 -0400 |
commit | 41dd416811754f008b992235801fcd6010ca3979 (patch) | |
tree | 1dfdf2ed15fa4dc6b4ab79301ecba4709732b45e /tests | |
parent | 692987a02adfaa7e05086c1d4c89228d0525bc2e (diff) | |
download | python-coveragepy-git-41dd416811754f008b992235801fcd6010ca3979.tar.gz |
Upgrade most dependencies
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_oddball.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py index 2a0b03c0..5bd204d9 100644 --- a/tests/test_oddball.py +++ b/tests/test_oddball.py @@ -398,15 +398,6 @@ class ExceptionTest(CoverageTest): class DoctestTest(CoverageTest): """Tests invoked with doctest should measure properly.""" - def setUp(self): - super(DoctestTest, self).setUp() - - # This test case exists because Python 2.4's doctest module didn't play - # well with coverage. Nose fixes the problem by monkeypatching doctest. - # I want to be sure there's no monkeypatch and that I'm getting the - # doctest module that users of coverage will get. - assert 'doctest' not in sys.modules - def test_doctest(self): self.check_coverage('''\ def return_arg_or_void(arg): |