diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2020-03-11 15:05:04 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2020-03-11 16:45:36 +0100 |
commit | ae09dfb7935737f2b393efe64ef76ce12f823446 (patch) | |
tree | 0d3cdf0c8c20c9e15bd8cf87e26cdae28c6bc8d9 /tests/unittest_modutils.py | |
parent | 3a075c0205a717bbd68562da5017992c430549d3 (diff) | |
download | astroid-git-ae09dfb7935737f2b393efe64ef76ce12f823446.tar.gz |
Kill `extrapath` from various `modutils` functions as it was not used
Diffstat (limited to 'tests/unittest_modutils.py')
-rw-r--r-- | tests/unittest_modutils.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/unittest_modutils.py b/tests/unittest_modutils.py index 1747dc22..56b12c9b 100644 --- a/tests/unittest_modutils.py +++ b/tests/unittest_modutils.py @@ -127,14 +127,6 @@ class ModPathFromFileTest(unittest.TestCase): ["xml", "etree", "ElementTree"], ) - def test_knownValues_modpath_from_file_2(self): - self.assertEqual( - modutils.modpath_from_file( - "unittest_modutils.py", {os.getcwd(): "arbitrary.pkg"} - ), - ["arbitrary", "pkg", "unittest_modutils"], - ) - def test_raise_modpath_from_file_Exception(self): self.assertRaises(Exception, modutils.modpath_from_file, "/turlututu") |