()
| 30 | |
| 31 | |
| 32 | def test_valid_import() -> None: |
| 33 | instance = import_from_string("tempfile:TemporaryFile") |
| 34 | from tempfile import TemporaryFile |
| 35 | |
| 36 | assert instance == TemporaryFile |
| 37 | |
| 38 | |
| 39 | def test_no_import_needed() -> None: |
nothing calls this directly
no test coverage detected