summaryrefslogtreecommitdiff
path: root/tests/test_api.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-05-20 15:08:02 -0400
committerNed Batchelder <ned@nedbatchelder.com>2016-05-20 15:08:02 -0400
commit00f15ba0a5731aa1b1ef0db85608a45f78a3f160 (patch)
treebd2d734768e638c2debd8465c6b378f61a91e565 /tests/test_api.py
parent8049de611424191b3d530c509485fd2587b2d4cb (diff)
downloadpython-coveragepy-git-00f15ba0a5731aa1b1ef0db85608a45f78a3f160.tar.gz
Clean ups
Diffstat (limited to 'tests/test_api.py')
-rw-r--r--tests/test_api.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_api.py b/tests/test_api.py
index 55cdbe8d..f4ab2bae 100644
--- a/tests/test_api.py
+++ b/tests/test_api.py
@@ -571,8 +571,11 @@ class ReporterDeprecatedAttributeTest(CoverageTest):
def test_reporter_file_reporters(self):
rep = Reporter(None, None)
+
with warnings.catch_warnings(record=True) as warns:
warnings.simplefilter("always")
- rep.file_reporters
+ # Accessing this attribute will raise a DeprecationWarning.
+ rep.file_reporters # pylint: disable=pointless-statement
+
self.assertEqual(len(warns), 1)
self.assertTrue(issubclass(warns[0].category, DeprecationWarning))