summaryrefslogtreecommitdiff
path: root/test/test_config.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-04-18 08:35:47 -0400
committerNed Batchelder <ned@nedbatchelder.com>2012-04-18 08:35:47 -0400
commit9840d2de631dbfb99306c9b2930bcf40a624bbfb (patch)
tree9a65bad8e59e769ebd0ebcec29fa92628f52d82f /test/test_config.py
parent964668c05af407eb95aad0b15e90b29f0ad0c53c (diff)
downloadpython-coveragepy-git-9840d2de631dbfb99306c9b2930bcf40a624bbfb.tar.gz
Add show_missing to the config file. #173.
Diffstat (limited to 'test/test_config.py')
-rw-r--r--test/test_config.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_config.py b/test/test_config.py
index 13ec0f3c..236216f6 100644
--- a/test/test_config.py
+++ b/test/test_config.py
@@ -133,6 +133,8 @@ class ConfigFileTest(CoverageTest):
if 0:
while True:
+ show_missing= TruE
+
[html]
directory = c:\\tricky\\dir.somewhere
@@ -172,6 +174,7 @@ class ConfigFileTest(CoverageTest):
self.assertEqual(cov.config.partial_always_list,
["if 0:", "while True:"]
)
+ self.assertTrue(cov.config.show_missing)
self.assertEqual(cov.config.html_dir, r"c:\tricky\dir.somewhere")
self.assertEqual(cov.config.xml_output, "mycov.xml")