diff options
Diffstat (limited to 'tests/test_api.py')
-rw-r--r-- | tests/test_api.py | 5 |
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)) |