(self, pytester: Pytester, mock_timing)
| 946 | """ |
| 947 | |
| 948 | def test_setup_function(self, pytester: Pytester, mock_timing) -> None: |
| 949 | pytester.makepyfile(self.source) |
| 950 | result = pytester.runpytest_inprocess("--durations=10") |
| 951 | assert result.ret == 0 |
| 952 | |
| 953 | result.stdout.fnmatch_lines_random( |
| 954 | """ |
| 955 | *durations* |
| 956 | 5.00s call *test_1* |
| 957 | 2.00s setup *test_1* |
| 958 | """ |
| 959 | ) |
| 960 | |
| 961 | |
| 962 | def test_zipimport_hook(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected