(self)
| 119 | self.assertIn('__init__', loader.get_filename(name)) |
| 120 | |
| 121 | def test_failure(self): |
| 122 | with util.create_modules('blah') as mapping: |
| 123 | nothing = self.import_(mapping['.root'], 'sdfsadsadf') |
| 124 | self.assertEqual(nothing, self.NOT_FOUND) |
| 125 | |
| 126 | def test_empty_string_for_dir(self): |
| 127 | # The empty string from sys.path means to search in the cwd. |
nothing calls this directly
no test coverage detected