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