summaryrefslogtreecommitdiff
path: root/tests/eggsrc
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/eggsrc
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/eggsrc')
-rw-r--r--tests/eggsrc/egg1/__init__.py0
-rw-r--r--tests/eggsrc/egg1/egg1.py4
-rw-r--r--tests/eggsrc/setup.py8
3 files changed, 12 insertions, 0 deletions
diff --git a/tests/eggsrc/egg1/__init__.py b/tests/eggsrc/egg1/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/eggsrc/egg1/__init__.py
diff --git a/tests/eggsrc/egg1/egg1.py b/tests/eggsrc/egg1/egg1.py
new file mode 100644
index 0000000..3fadde3
--- /dev/null
+++ b/tests/eggsrc/egg1/egg1.py
@@ -0,0 +1,4 @@
+# My egg file!
+
+walrus = "Eggman"
+says = "coo-coo cachoo"
diff --git a/tests/eggsrc/setup.py b/tests/eggsrc/setup.py
new file mode 100644
index 0000000..f9b8b9d
--- /dev/null
+++ b/tests/eggsrc/setup.py
@@ -0,0 +1,8 @@
+from setuptools import setup
+
+setup(
+ name="covtestegg1",
+ packages=['egg1'],
+ zip_safe=True,
+ install_requires=[],
+ )