(self)
| 2020 | |
| 2021 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2022 | def test_doubly_nested(self): |
| 2023 | with captured_stdout(): |
| 2024 | inner = outer()() |
| 2025 | actual = dis.get_instructions(inner, first_line=expected_inner_line) |
| 2026 | self.assertInstructionsEqual(list(actual), expected_opinfo_inner) |
| 2027 | |
| 2028 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2029 | def test_jumpy(self): |
nothing calls this directly
no test coverage detected