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 | 1ea2b87c872b8ae92f0b89f14c93786fcf1b87e2 (patch) | |
| tree | 8193f0bfe502adab6b539f59567cd0f9f5ae4b8a /test/modules | |
| parent | 9f69294116672d820d174667f29151a185ab18e1 (diff) | |
| download | python-coveragepy-1ea2b87c872b8ae92f0b89f14c93786fcf1b87e2.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 0000000..a9aeef0 --- /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 0000000..e69de29 --- /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 0000000..4b6a15c --- /dev/null +++ b/test/modules/pkg1/sub/ps1a.py @@ -0,0 +1,3 @@ +d = 1 +e = 2 +f = 3 |
