summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2015-03-27 18:21:26 (GMT)
committerBrett Cannon <brett@python.org>2015-03-27 18:21:26 (GMT)
commitac9591a44a504af25bb85aaa09ba46393d8bdce9 (patch)
tree2b61b1fe82e74f1d678cd5f26e4503350bbc2cd2 /Lib/test/test_importlib
parentff7f428b38d22e1a168fff3f9eac383e8e5511f5 (diff)
downloadcpython-ac9591a44a504af25bb85aaa09ba46393d8bdce9.zip
cpython-ac9591a44a504af25bb85aaa09ba46393d8bdce9.tar.gz
cpython-ac9591a44a504af25bb85aaa09ba46393d8bdce9.tar.bz2
Remove a dead test for a never-launched API
Diffstat (limited to 'Lib/test/test_importlib')
-rw-r--r--Lib/test/test_importlib/test_util.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py
index 2493af7..5d35d14 100644
--- a/Lib/test/test_importlib/test_util.py
+++ b/Lib/test/test_importlib/test_util.py
@@ -469,15 +469,6 @@ class FindSpecTests:
self.assertEqual((name, None, None),
self.util.find_spec(name))
-# def test_success_path(self):
-# # Searching on a path should work.
-# name = 'some_mod'
-# path = 'path to some place'
-# with util.uncache(name):
-# with util.import_state(meta_path=[self.FakeMetaFinder]):
-# self.assertEqual((name, path, None),
-# self.util.find_spec(name, path))
-
def test_nothing(self):
# None is returned upon failure to find a loader.
self.assertIsNone(self.util.find_spec('nevergoingtofindthismodule'))