diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-08-30 23:08:39 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-08-30 23:08:39 -0400 |
commit | b8a9e1e21d728e4dd783a4aaecba81dc4f0b11f3 (patch) | |
tree | ced71b31e8b9d3fc238ef0fd9e76fdcefd21d664 /test/modules | |
parent | 95b6988b7728fca012cc1469587f7316c80b4d78 (diff) | |
download | python-coveragepy-git-b8a9e1e21d728e4dd783a4aaecba81dc4f0b11f3.tar.gz |
Some prep work for finding completely uncovered files.
Diffstat (limited to 'test/modules')
-rw-r--r-- | test/modules/pkg1/p1c.py | 3 | ||||
-rw-r--r-- | test/modules/pkg1/sub/__init__.py | 0 | ||||
-rw-r--r-- | test/modules/pkg1/sub/ps1a.py | 3 |
3 files changed, 6 insertions, 0 deletions
diff --git a/test/modules/pkg1/p1c.py b/test/modules/pkg1/p1c.py new file mode 100644 index 00000000..a9aeef04 --- /dev/null +++ b/test/modules/pkg1/p1c.py @@ -0,0 +1,3 @@ +a = 1 +b = 2 +c = 3 diff --git a/test/modules/pkg1/sub/__init__.py b/test/modules/pkg1/sub/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/modules/pkg1/sub/__init__.py diff --git a/test/modules/pkg1/sub/ps1a.py b/test/modules/pkg1/sub/ps1a.py new file mode 100644 index 00000000..4b6a15cc --- /dev/null +++ b/test/modules/pkg1/sub/ps1a.py @@ -0,0 +1,3 @@ +d = 1 +e = 2 +f = 3 |