diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2011-06-01 08:19:46 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-06-01 08:19:46 -0400 |
| commit | d2ef0b1e323c85e9a7fc3782bc4d5cd5511d9a74 (patch) | |
| tree | 6d0449fc5a693b23e7de841782fc1ef6152a7738 /test/moremodules/othermods | |
| parent | 9712533c72501df0161fcb7cd8219da21104e9d6 (diff) | |
| download | python-coveragepy-git-d2ef0b1e323c85e9a7fc3782bc4d5cd5511d9a74.tar.gz | |
Move some test modules to keep them out of pylint's hair.
--HG--
rename : test/othermods/__init__.py => test/moremodules/othermods/__init__.py
rename : test/othermods/othera.py => test/moremodules/othermods/othera.py
rename : test/othermods/otherb.py => test/moremodules/othermods/otherb.py
rename : test/othermods/sub/__init__.py => test/moremodules/othermods/sub/__init__.py
rename : test/othermods/sub/osa.py => test/moremodules/othermods/sub/osa.py
rename : test/othermods/sub/osb.py => test/moremodules/othermods/sub/osb.py
Diffstat (limited to 'test/moremodules/othermods')
| -rw-r--r-- | test/moremodules/othermods/__init__.py | 0 | ||||
| -rw-r--r-- | test/moremodules/othermods/othera.py | 2 | ||||
| -rw-r--r-- | test/moremodules/othermods/otherb.py | 2 | ||||
| -rw-r--r-- | test/moremodules/othermods/sub/__init__.py | 0 | ||||
| -rw-r--r-- | test/moremodules/othermods/sub/osa.py | 2 | ||||
| -rw-r--r-- | test/moremodules/othermods/sub/osb.py | 2 |
6 files changed, 8 insertions, 0 deletions
diff --git a/test/moremodules/othermods/__init__.py b/test/moremodules/othermods/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/moremodules/othermods/__init__.py diff --git a/test/moremodules/othermods/othera.py b/test/moremodules/othermods/othera.py new file mode 100644 index 00000000..78896928 --- /dev/null +++ b/test/moremodules/othermods/othera.py @@ -0,0 +1,2 @@ +o = 1 +p = 2 diff --git a/test/moremodules/othermods/otherb.py b/test/moremodules/othermods/otherb.py new file mode 100644 index 00000000..2bd8a441 --- /dev/null +++ b/test/moremodules/othermods/otherb.py @@ -0,0 +1,2 @@ +q = 3 +r = 4 diff --git a/test/moremodules/othermods/sub/__init__.py b/test/moremodules/othermods/sub/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/moremodules/othermods/sub/__init__.py diff --git a/test/moremodules/othermods/sub/osa.py b/test/moremodules/othermods/sub/osa.py new file mode 100644 index 00000000..0139d28b --- /dev/null +++ b/test/moremodules/othermods/sub/osa.py @@ -0,0 +1,2 @@ +s = 5 +t = 6 diff --git a/test/moremodules/othermods/sub/osb.py b/test/moremodules/othermods/sub/osb.py new file mode 100644 index 00000000..b024b148 --- /dev/null +++ b/test/moremodules/othermods/sub/osb.py @@ -0,0 +1,2 @@ +u = 7 +v = 8 |
