(self, pytester: Pytester)
| 551 | ) |
| 552 | |
| 553 | def test_txtfile_with_fixtures(self, pytester: Pytester): |
| 554 | p = pytester.maketxtfile( |
| 555 | """ |
| 556 | >>> p = getfixture('tmp_path') |
| 557 | >>> p.is_dir() |
| 558 | True |
| 559 | """ |
| 560 | ) |
| 561 | reprec = pytester.inline_run(p) |
| 562 | reprec.assertoutcome(passed=1) |
| 563 | |
| 564 | def test_txtfile_with_usefixtures_in_ini(self, pytester: Pytester): |
| 565 | pytester.makeini( |
nothing calls this directly
no test coverage detected