summaryrefslogtreecommitdiff
path: root/tests/moremodules
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2013-02-02 11:15:11 -0500
committerNed Batchelder <ned@nedbatchelder.com>2013-02-02 11:15:11 -0500
commitd5f8295256d04ba8cb5b42a16ce741a34c9bb3c5 (patch)
treeff8c6d6310bb3865411d40198c07f26eb5709959 /tests/moremodules
parentb5a466fc3d7a71fc811b2430f04e6fc270858935 (diff)
downloadpython-coveragepy-d5f8295256d04ba8cb5b42a16ce741a34c9bb3c5.tar.gz
Move the test directory to tests to avoid conflicts with the stdlib test package.
Diffstat (limited to 'tests/moremodules')
-rw-r--r--tests/moremodules/othermods/__init__.py0
-rw-r--r--tests/moremodules/othermods/othera.py2
-rw-r--r--tests/moremodules/othermods/otherb.py2
-rw-r--r--tests/moremodules/othermods/sub/__init__.py0
-rw-r--r--tests/moremodules/othermods/sub/osa.py2
-rw-r--r--tests/moremodules/othermods/sub/osb.py2
6 files changed, 8 insertions, 0 deletions
diff --git a/tests/moremodules/othermods/__init__.py b/tests/moremodules/othermods/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/moremodules/othermods/__init__.py
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
--- /dev/null
+++ b/tests/moremodules/othermods/sub/__init__.py
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