diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2013-02-02 11:15:11 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-02-02 11:15:11 -0500 |
| commit | d5f8295256d04ba8cb5b42a16ce741a34c9bb3c5 (patch) | |
| tree | ff8c6d6310bb3865411d40198c07f26eb5709959 /tests/modules/pkg1/sub | |
| parent | b5a466fc3d7a71fc811b2430f04e6fc270858935 (diff) | |
| download | python-coveragepy-d5f8295256d04ba8cb5b42a16ce741a34c9bb3c5.tar.gz | |
Move the test directory to tests to avoid conflicts with the stdlib test package.
Diffstat (limited to 'tests/modules/pkg1/sub')
| -rw-r--r-- | tests/modules/pkg1/sub/__init__.py | 0 | ||||
| -rw-r--r-- | tests/modules/pkg1/sub/__main__.py | 3 | ||||
| -rw-r--r-- | tests/modules/pkg1/sub/ps1a.py | 3 | ||||
| -rw-r--r-- | tests/modules/pkg1/sub/runmod3.py | 3 |
4 files changed, 9 insertions, 0 deletions
diff --git a/tests/modules/pkg1/sub/__init__.py b/tests/modules/pkg1/sub/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/modules/pkg1/sub/__init__.py diff --git a/tests/modules/pkg1/sub/__main__.py b/tests/modules/pkg1/sub/__main__.py new file mode 100644 index 0000000..b5be9f1 --- /dev/null +++ b/tests/modules/pkg1/sub/__main__.py @@ -0,0 +1,3 @@ +# Used in the tests for run_python_module +import sys +print("pkg1.sub.__main__: passed %s" % sys.argv[1]) diff --git a/tests/modules/pkg1/sub/ps1a.py b/tests/modules/pkg1/sub/ps1a.py new file mode 100644 index 0000000..4b6a15c --- /dev/null +++ b/tests/modules/pkg1/sub/ps1a.py @@ -0,0 +1,3 @@ +d = 1 +e = 2 +f = 3 diff --git a/tests/modules/pkg1/sub/runmod3.py b/tests/modules/pkg1/sub/runmod3.py new file mode 100644 index 0000000..3a1ad15 --- /dev/null +++ b/tests/modules/pkg1/sub/runmod3.py @@ -0,0 +1,3 @@ +# Used in the tests for run_python_module +import sys +print("runmod3: passed %s" % sys.argv[1]) |
