(self, method)
| 101 | |
| 102 | class TestTraceback_f_g_h: |
| 103 | def setup_method(self, method): |
| 104 | try: |
| 105 | h() |
| 106 | except ValueError: |
| 107 | self.excinfo = _pytest._code.ExceptionInfo.from_current() |
| 108 | |
| 109 | def test_traceback_entries(self): |
| 110 | tb = self.excinfo.traceback |
nothing calls this directly
no test coverage detected