(self, pytester: Pytester)
| 17 | |
| 18 | class TestModule: |
| 19 | def test_failing_import(self, pytester: Pytester) -> None: |
| 20 | modcol = pytester.getmodulecol("import alksdjalskdjalkjals") |
| 21 | pytest.raises(Collector.CollectError, modcol.collect) |
| 22 | |
| 23 | def test_import_duplicate(self, pytester: Pytester) -> None: |
| 24 | a = pytester.mkdir("a") |
nothing calls this directly
no test coverage detected