aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-03-23 20:06:22 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-03-23 20:06:22 -0400
commit71a75cab2ea0fff6e4b199267e4d6db0d653acad (patch)
tree93f6f622ceb98327b5b56a9752887b73ce8c046c
parentbfe8fb26996ca3d06c0c87176ff46a60834fb593 (diff)
downloadexternal_python_setuptools-71a75cab2ea0fff6e4b199267e4d6db0d653acad.tar.gz
external_python_setuptools-71a75cab2ea0fff6e4b199267e4d6db0d653acad.tar.bz2
external_python_setuptools-71a75cab2ea0fff6e4b199267e4d6db0d653acad.zip
Remove test_build_egg. The test doesn't work and it's difficult to test _build_egg given the current interface.
-rw-r--r--tests/test_ez_setup.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/test_ez_setup.py b/tests/test_ez_setup.py
index 7a6baf0c..3e895dd4 100644
--- a/tests/test_ez_setup.py
+++ b/tests/test_ez_setup.py
@@ -35,15 +35,6 @@ class TestSetup(unittest.TestCase):
os.chdir(self.cwd)
sys.path = copy.copy(self.old_sys_path)
- def test_build_egg(self):
- # making it an egg
- egg = _build_egg('Egg to be built', self.zipball, self.tmpdir)
-
- # now trying to import it
- sys.path[0] = egg
- import setuptools
- self.assertTrue(setuptools.__file__.startswith(egg))
-
def test_do_download(self):
tmpdir = tempfile.mkdtemp()
_do_download(DEFAULT_VERSION, DEFAULT_URL, tmpdir, 1)