diff options
author | Brett Cannon <brett@python.org> | 2015-03-27 18:21:26 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-03-27 18:21:26 (GMT) |
commit | ac9591a44a504af25bb85aaa09ba46393d8bdce9 (patch) | |
tree | 2b61b1fe82e74f1d678cd5f26e4503350bbc2cd2 /Lib/test/test_importlib | |
parent | ff7f428b38d22e1a168fff3f9eac383e8e5511f5 (diff) | |
download | cpython-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.py | 9 |
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')) |