(self, method)
| 122 | |
| 123 | class TestTraceback_f_g_h: |
| 124 | def setup_method(self, method): |
| 125 | try: |
| 126 | h() |
| 127 | except ValueError: |
| 128 | self.excinfo = _pytest._code.ExceptionInfo.from_current() |
| 129 | |
| 130 | def test_traceback_entries(self): |
| 131 | tb = self.excinfo.traceback |
nothing calls this directly
no test coverage detected