summaryrefslogtreecommitdiff
path: root/tests/test_python33_bdist_egg.py
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
commit0e095bea8335a02f3e9ca868a5f689b79fc1aca9 (patch)
treedb20c67813b30641f15649c45c2c04b9fe590059 /tests/test_python33_bdist_egg.py
parentf090838c3613065fd6505cd390511a96e08755c4 (diff)
downloadpython-setuptools-git-0e095bea8335a02f3e9ca868a5f689b79fc1aca9.tar.gz
Delete redundant tests.
setuptools/tests/test_bdist_egg.py is testing the same functionality. --HG-- branch : distribute extra : rebase_source : d53119dd1c6074923e8f42216d1ab773f2bc2467
Diffstat (limited to 'tests/test_python33_bdist_egg.py')
-rw-r--r--tests/test_python33_bdist_egg.py19
1 files changed, 0 insertions, 19 deletions
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()