(self)
| 268 | |
| 269 | class Get_entityTest(unittest.TestCase): |
| 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 |
nothing calls this directly
no test coverage detected