Commit c3319da5 authored by Jason R. Coombs's avatar Jason R. Coombs

Remove apparently unused method.

parent a5b9b910
......@@ -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)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment