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