(self)
| 894 | yield context |
| 895 | |
| 896 | def test_context(self): |
| 897 | # Running outside of context should error. |
| 898 | with self.assertRaisesRegex(ValueError, "Expected current_context()"): |
| 899 | self._invoke(num_iters=3, xs={}) |
| 900 | |
| 901 | def test_basic(self): |
| 902 | num_iters = 3 |