(self)
| 270 | def test_bad_entity(self): |
| 271 | self.assertIsNone(calltip.get_entity('1/0')) |
| 272 | def test_good_entity(self): |
| 273 | self.assertIs(calltip.get_entity('int'), int) |
| 274 | |
| 275 | |
| 276 | # Test the 9 Calltip methods. |
nothing calls this directly
no test coverage detected