summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2012-08-22 19:42:22 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2012-08-22 19:42:22 +0200
commit6110a8d36b395f98d0e00eef713bece4ac9ecbca (patch)
treef59e150021cfd75f632d88b1aeaae434fe241fd1 /tests
parent2956d9caa9c4327710f66d036d23f2053a2e8602 (diff)
downloadpython-setuptools-bitbucket-6110a8d36b395f98d0e00eef713bece4ac9ecbca.tar.gz
Delete redundant tests.
setuptools/tests/test_bdist_egg.py is testing the same functionality.
Diffstat (limited to 'tests')
-rw-r--r--tests/python3.3_bdist_egg_test/module.py0
-rw-r--r--tests/python3.3_bdist_egg_test/setup.py13
-rw-r--r--tests/test_python33_bdist_egg.py19
3 files changed, 0 insertions, 32 deletions
diff --git a/tests/python3.3_bdist_egg_test/module.py b/tests/python3.3_bdist_egg_test/module.py
deleted file mode 100644
index e69de29b..00000000
--- a/tests/python3.3_bdist_egg_test/module.py
+++ /dev/null
diff --git a/tests/python3.3_bdist_egg_test/setup.py b/tests/python3.3_bdist_egg_test/setup.py
deleted file mode 100644
index 04caea74..00000000
--- a/tests/python3.3_bdist_egg_test/setup.py
+++ /dev/null
@@ -1,13 +0,0 @@
-from setuptools import setup
-
-setup(
- name='python3.3_bdist_egg_test',
- version='0.0.0',
- description='Test',
- license='BSD',
- py_modules=['module'],
- author='Marc Abramowitz',
- author_email='marc@marc-abramowitz.com',
- url='https://bitbucket.org/msabramo/python3.3_bdist_egg_test',
- # zip_safe=False,
-)
diff --git a/tests/test_python33_bdist_egg.py b/tests/test_python33_bdist_egg.py
deleted file mode 100644
index 9f32470a..00000000
--- a/tests/test_python33_bdist_egg.py
+++ /dev/null
@@ -1,19 +0,0 @@
-import sys
-import os
-import unittest
-
-CURDIR = os.path.abspath(os.path.dirname(__file__))
-TOPDIR = os.path.split(CURDIR)[0]
-sys.path.insert(0, TOPDIR)
-
-from distribute_setup import _python_cmd
-
-class TestPython33BdistEgg(unittest.TestCase):
-
- def test_build_egg(self):
- os.chdir(os.path.join(CURDIR, 'python3.3_bdist_egg_test'))
- self.assertTrue(_python_cmd("setup.py", "bdist_egg"))
-
-
-if __name__ == '__main__':
- unittest.main()