diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-01 18:13:41 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-01 18:13:41 -0500 |
commit | c3319da5b2e4a8d597a5b27d4a034199eea78745 (patch) | |
tree | b335445080f90488828b6293d8d537ff7a77b09e | |
parent | a5b9b91081943cb771a3fc7b5873410599513332 (diff) | |
download | external_python_setuptools-c3319da5b2e4a8d597a5b27d4a034199eea78745.tar.gz external_python_setuptools-c3319da5b2e4a8d597a5b27d4a034199eea78745.tar.bz2 external_python_setuptools-c3319da5b2e4a8d597a5b27d4a034199eea78745.zip |
Remove apparently unused method.
-rw-r--r-- | setuptools/tests/test_develop.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py index 890880dc..f18ddd6e 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -102,20 +102,3 @@ class TestDevelopTest: assert init == 'print "foo"' else: assert init == 'print("foo")' - - def notest_develop_with_setup_requires(self): - - wanted = ("Could not find suitable distribution for " - "Requirement.parse('I-DONT-EXIST')") - old_dir = os.getcwd() - os.chdir(self.dir) - try: - try: - Distribution({'setup_requires': ['I_DONT_EXIST']}) - except DistutilsError: - e = sys.exc_info()[1] - error = str(e) - if error == wanted: - pass - finally: - os.chdir(old_dir) |