(self)
| 980 | """) |
| 981 | |
| 982 | def test_NameError(self): |
| 983 | self.assert_run_failed(NameError, """ |
| 984 | res = spam + eggs |
| 985 | """) |
| 986 | # XXX check preserved suggestions |
| 987 | |
| 988 | def test_AttributeError(self): |
| 989 | self.assert_run_failed(AttributeError, """ |
nothing calls this directly
no test coverage detected