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/moremodules/othermods/__init__.py | 0 tests/moremodules/othermods/othera.py | 2 ++ tests/moremodules/othermods/otherb.py | 2 ++ tests/moremodules/othermods/sub/__init__.py | 0 tests/moremodules/othermods/sub/osa.py | 2 ++ tests/moremodules/othermods/sub/osb.py | 2 ++ 6 files changed, 8 insertions(+) create mode 100644 tests/moremodules/othermods/__init__.py create mode 100644 tests/moremodules/othermods/othera.py create mode 100644 tests/moremodules/othermods/otherb.py create mode 100644 tests/moremodules/othermods/sub/__init__.py create mode 100644 tests/moremodules/othermods/sub/osa.py create mode 100644 tests/moremodules/othermods/sub/osb.py (limited to 'tests/moremodules') diff --git a/tests/moremodules/othermods/__init__.py b/tests/moremodules/othermods/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/moremodules/othermods/othera.py b/tests/moremodules/othermods/othera.py new file mode 100644 index 0000000..7889692 --- /dev/null +++ b/tests/moremodules/othermods/othera.py @@ -0,0 +1,2 @@ +o = 1 +p = 2 diff --git a/tests/moremodules/othermods/otherb.py b/tests/moremodules/othermods/otherb.py new file mode 100644 index 0000000..2bd8a44 --- /dev/null +++ b/tests/moremodules/othermods/otherb.py @@ -0,0 +1,2 @@ +q = 3 +r = 4 diff --git a/tests/moremodules/othermods/sub/__init__.py b/tests/moremodules/othermods/sub/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/moremodules/othermods/sub/osa.py b/tests/moremodules/othermods/sub/osa.py new file mode 100644 index 0000000..0139d28 --- /dev/null +++ b/tests/moremodules/othermods/sub/osa.py @@ -0,0 +1,2 @@ +s = 5 +t = 6 diff --git a/tests/moremodules/othermods/sub/osb.py b/tests/moremodules/othermods/sub/osb.py new file mode 100644 index 0000000..b024b14 --- /dev/null +++ b/tests/moremodules/othermods/sub/osb.py @@ -0,0 +1,2 @@ +u = 7 +v = 8 -- cgit v1.2.1