diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-03-13 22:14:57 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-03-13 22:14:57 -0500 |
commit | 3f43a51c7a1e4532d57dc3cd95fa6c4397c87f50 (patch) | |
tree | 9bef9e74ff78aa250f4f3ca230eaad5d3a9b0c26 /test/test_process.py | |
parent | 76aa3fbcb1592ac4b83363cee8e17094ed3c508f (diff) | |
download | python-coveragepy-git-3f43a51c7a1e4532d57dc3cd95fa6c4397c87f50.tar.gz |
Reports now emphasize missed lines over executed lines, since those are more helpful for directing developers to improved test coverage.
Diffstat (limited to 'test/test_process.py')
-rw-r--r-- | test/test_process.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_process.py b/test/test_process.py index ce98a383..e8e8c8be 100644 --- a/test/test_process.py +++ b/test/test_process.py @@ -123,9 +123,9 @@ class ProcessTest(CoverageTest): # Reporting should still work even with the .rc file out = self.run_command("coverage report") self.assertMultiLineEqual(out, textwrap.dedent("""\ - Name Stmts Exec Cover + Name Stmts Miss Cover ---------------------------- - b_or_c 7 7 100% + b_or_c 7 0 100% """)) def test_missing_source_file(self): |