()
| 65 | |
| 66 | |
| 67 | def test_getstatement_empty_fullsource() -> None: |
| 68 | def func() -> FrameType: |
| 69 | return sys._getframe(0) |
| 70 | |
| 71 | f = Frame(func()) |
| 72 | with mock.patch.object(f.code.__class__, "fullsource", None): |
| 73 | assert f.statement == Source("") |
| 74 | |
| 75 | |
| 76 | def test_code_from_func() -> None: |