From d5f8295256d04ba8cb5b42a16ce741a34c9bb3c5 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 2 Feb 2013 11:15:11 -0500 Subject: Move the test directory to tests to avoid conflicts with the stdlib test package. --- tests/modules/pkg2/__init__.py | 2 ++ tests/modules/pkg2/p2a.py | 3 +++ tests/modules/pkg2/p2b.py | 3 +++ 3 files changed, 8 insertions(+) create mode 100644 tests/modules/pkg2/__init__.py create mode 100644 tests/modules/pkg2/p2a.py create mode 100644 tests/modules/pkg2/p2b.py (limited to 'tests/modules/pkg2') diff --git a/tests/modules/pkg2/__init__.py b/tests/modules/pkg2/__init__.py new file mode 100644 index 0000000..090efbf --- /dev/null +++ b/tests/modules/pkg2/__init__.py @@ -0,0 +1,2 @@ +# This is an __init__.py file, with no executable statements in it. +# This comment shouldn't confuse the parser. diff --git a/tests/modules/pkg2/p2a.py b/tests/modules/pkg2/p2a.py new file mode 100644 index 0000000..b606711 --- /dev/null +++ b/tests/modules/pkg2/p2a.py @@ -0,0 +1,3 @@ +q = 1 +r = 1 +s = 1 diff --git a/tests/modules/pkg2/p2b.py b/tests/modules/pkg2/p2b.py new file mode 100644 index 0000000..7a34e2c --- /dev/null +++ b/tests/modules/pkg2/p2b.py @@ -0,0 +1,3 @@ +t = 1 +u = 1 +v = 1 -- cgit v1.2.1