(self, pytester: Pytester)
| 39 | assert len(items) == 0 |
| 40 | |
| 41 | def test_collect_module_empty(self, pytester: Pytester): |
| 42 | path = pytester.makepyfile(whatever="#") |
| 43 | for p in (path, pytester.path): |
| 44 | items, reprec = pytester.inline_genitems(p, "--doctest-modules") |
| 45 | assert len(items) == 0 |
| 46 | |
| 47 | def test_collect_module_single_modulelevel_doctest(self, pytester: Pytester): |
| 48 | path = pytester.makepyfile(whatever='""">>> pass"""') |
nothing calls this directly
no test coverage detected