()
| 543 | eq_(found, listed) |
| 544 | |
| 545 | def make_combinations(): |
| 546 | unroll = [] |
| 547 | for cls_list, callable_list in ALL_EXC: |
| 548 | unroll.extend(product(cls_list, callable_list)) |
| 549 | |
| 550 | return combinations_list(unroll) |
| 551 | |
| 552 | @make_combinations() |
| 553 | def test_exc(self, cls, ctor): |
nothing calls this directly
no test coverage detected