(self, pytester: Pytester)
| 142 | reprec.assertoutcome(passed=1) |
| 143 | |
| 144 | def test_new_pattern(self, pytester: Pytester): |
| 145 | p = pytester.maketxtfile( |
| 146 | xdoc=""" |
| 147 | >>> x = 1 |
| 148 | >>> x == 1 |
| 149 | False |
| 150 | """ |
| 151 | ) |
| 152 | reprec = pytester.inline_run(p, "--doctest-glob=x*.txt") |
| 153 | reprec.assertoutcome(failed=1) |
| 154 | |
| 155 | def test_multiple_patterns(self, pytester: Pytester): |
| 156 | """Test support for multiple --doctest-glob arguments (#1255).""" |
nothing calls this directly
no test coverage detected