diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2015-01-19 19:52:04 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-01-19 19:52:04 -0500 |
| commit | 0c343a924fe8e53b25940722104ca1ea1f7f50ba (patch) | |
| tree | 9e0bcc62672ed7a89a4d84267f7f7bd9552cd602 /tests/test_config.py | |
| parent | 66ee95f02fdfee8b9c99c799224714e2be634db2 (diff) | |
| download | python-coveragepy-0c343a924fe8e53b25940722104ca1ea1f7f50ba.tar.gz | |
XML package_depth configuration option. Thanks, Lex Berezhny
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 450c94f..366b4bc 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -233,6 +233,7 @@ class ConfigFileTest(CoverageTest): title = Title & nums # nums! [{section}xml] output=mycov.xml + package_depth = 17 [{section}paths] source = @@ -294,6 +295,7 @@ class ConfigFileTest(CoverageTest): self.assertEqual(cov.config.html_title, "Title & nums # nums!") self.assertEqual(cov.config.xml_output, "mycov.xml") + self.assertEqual(cov.config.xml_package_depth, 17) self.assertEqual(cov.config.paths, { 'source': ['.', '/home/ned/src/'], |
