diff options
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 00000000..e69de29b --- /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 00000000..b5be9f1c --- /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 00000000..4b6a15cc --- /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 00000000..3a1ad155 --- /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]) |
