diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-09-03 23:20:39 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-09-03 23:20:39 -0400 |
commit | e3e843da657cf109f482a173f8b1eec301c91f38 (patch) | |
tree | 5084ad4d5d7cc85c8999a4b9099fc83eb61eeffc /lab | |
parent | 023f6b5f6789230d7dc473361d75505bf86c60f3 (diff) | |
download | python-coveragepy-e3e843da657cf109f482a173f8b1eec301c91f38.tar.gz |
Now that we include 0% files in the data, they aren't 'executed', they are 'measured'.
Diffstat (limited to 'lab')
-rw-r--r-- | lab/dataflow.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lab/dataflow.txt b/lab/dataflow.txt index 5796206..b2b619a 100644 --- a/lab/dataflow.txt +++ b/lab/dataflow.txt @@ -15,7 +15,7 @@ Collector.get_line_data(): CoverageData.add_line_data( { filename: { lineno: None, .. }, ... } ) --> data.lines -CoverageData.executed_files(): +CoverageData.measured_files(): returns [filename, ...] called by: Reporter.find_code_units() |