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 | 9f6fa1c7806e7802572b28e8ecbd57a9afe5ec21 (patch) | |
tree | d4dc63b5974b040225223e6774828dd15ddd4687 /test/test_process.py | |
parent | 99d1f54a583e5ac22742dada31a980b3145ce528 (diff) | |
download | python-coveragepy-9f6fa1c7806e7802572b28e8ecbd57a9afe5ec21.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 ce98a38..e8e8c8b 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): |