(self, pytester: Pytester, mock_timing)
| 1052 | """ |
| 1053 | |
| 1054 | def test_setup_function(self, pytester: Pytester, mock_timing) -> None: |
| 1055 | pytester.makepyfile(self.source) |
| 1056 | result = pytester.runpytest_inprocess("--durations=10") |
| 1057 | assert result.ret == 0 |
| 1058 | |
| 1059 | result.stdout.fnmatch_lines_random( |
| 1060 | """ |
| 1061 | *durations* |
| 1062 | 5.00s call *test_1* |
| 1063 | 2.00s setup *test_1* |
| 1064 | """ |
| 1065 | ) |
| 1066 | |
| 1067 | |
| 1068 | def test_zipimport_hook(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected