Test simple imports
()
| 20 | #----------------------------------------------------------------------------- |
| 21 | |
| 22 | def test_import_plain(): |
| 23 | "Test simple imports" |
| 24 | import os |
| 25 | os2 = import_item('os') |
| 26 | nt.assert_true(os is os2) |
| 27 | |
| 28 | |
| 29 | def test_import_nested(): |
nothing calls this directly
no test coverage detected