Test simple imports
()
| 21 | |
| 22 | |
| 23 | def test_import_plain(): |
| 24 | "Test simple imports" |
| 25 | import os |
| 26 | |
| 27 | os2 = import_item("os") |
| 28 | assert os is os2 |
| 29 | |
| 30 | |
| 31 | def test_import_nested(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…