(self)
| 14 | |
| 15 | class TestImportItem(TestCase): |
| 16 | def test_import_unicode(self): |
| 17 | self.assertIs(os, import_item("os")) |
| 18 | self.assertIs(os.path, import_item("os.path")) |
| 19 | self.assertIs(os.path.join, import_item("os.path.join")) |
| 20 | |
| 21 | def test_bad_input(self): |
| 22 | class NotAString: |
nothing calls this directly
no test coverage detected