(self, pytester: Pytester)
| 694 | self.check_config_args(pytester) |
| 695 | |
| 696 | def check_config_args(self, pytester: Pytester) -> None: |
| 697 | config = pytester.parseconfig() |
| 698 | values = config.getini("args") |
| 699 | assert values == ["123", "123 hello", "this"] |
| 700 | values = config.getini("a2") |
| 701 | assert values == list("123") |
| 702 | |
| 703 | def make_conftest_for_linelist(self, pytester: Pytester) -> None: |
| 704 | pytester.makeconftest( |
no test coverage detected