Test nested imports from the stdlib
()
| 27 | |
| 28 | |
| 29 | def test_import_nested(): |
| 30 | "Test nested imports from the stdlib" |
| 31 | from os import path |
| 32 | path2 = import_item('os.path') |
| 33 | nt.assert_true(path is path2) |
| 34 | |
| 35 | |
| 36 | def test_import_raises(): |
nothing calls this directly
no test coverage detected