(self)
| 572 | class OpenerDirectorTests(unittest.TestCase): |
| 573 | |
| 574 | def test_add_non_handler(self): |
| 575 | class NonHandler(object): |
| 576 | pass |
| 577 | self.assertRaises(TypeError, |
| 578 | OpenerDirector().add_handler, NonHandler()) |
| 579 | |
| 580 | def test_no_protocol_methods(self): |
| 581 | # test the case that methods starts with handler type without the protocol |
nothing calls this directly
no test coverage detected