diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 07:30:07 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 07:30:07 -0500 |
commit | ab861cc4535777fed86e6cb36b3608b4fc8c079d (patch) | |
tree | 50b8f1cc7ba3508dce78f157c49b4c10f5564b8b /tests/test_config.py | |
parent | 622742746327abccd848d40583c9d7bc8bcb096c (diff) | |
parent | 994a6f8c169094d406bad7e63a33b5d99fe38c2b (diff) | |
download | python-coveragepy-git-ab861cc4535777fed86e6cb36b3608b4fc8c079d.tar.gz |
Merged pull request 43: --skip-covered
Diffstat (limited to 'tests/test_config.py')
-rw-r--r-- | tests/test_config.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index 15a0c569..26a22222 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -209,6 +209,7 @@ class ConfigFileTest(CoverageTest): while True: show_missing= TruE + skip_covered = TruE [{section}html] @@ -272,6 +273,7 @@ class ConfigFileTest(CoverageTest): ["plugins.a_plugin", "plugins.another"] ) self.assertTrue(cov.config.show_missing) + self.assertTrue(cov.config.skip_covered) self.assertEqual(cov.config.html_dir, r"c:\tricky\dir.somewhere") self.assertEqual(cov.config.extra_css, "something/extra.css") self.assertEqual(cov.config.html_title, "Title & nums # nums!") |