(self, cond)
| 717 | class TestDisable(MonitoringTestBase, unittest.TestCase): |
| 718 | |
| 719 | def gen(self, cond): |
| 720 | for i in range(10): |
| 721 | if cond: |
| 722 | yield 1 |
| 723 | else: |
| 724 | yield 2 |
| 725 | |
| 726 | def raise_handle_reraise(self): |
| 727 | try: |
no outgoing calls
no test coverage detected