(self)
| 76 | print(b"ghi") |
| 77 | |
| 78 | def test_failing(self): |
| 79 | def func(): |
| 80 | with tt.AssertPrints("abc"): |
| 81 | print("acd") |
| 82 | print("def") |
| 83 | print(b"ghi") |
| 84 | |
| 85 | self.assertRaises(AssertionError, func) |
| 86 | |
| 87 | |
| 88 | class Test_ipexec_validate(tt.TempFileMixin): |
nothing calls this directly
no outgoing calls
no test coverage detected