(self)
| 414 | eq_(result.first(), (7,)) |
| 415 | |
| 416 | def test_iter(self): |
| 417 | with self._fixture() as (sess, bq): |
| 418 | result = bq(sess).with_post_criteria( |
| 419 | lambda q: q.execution_options(yes=True) |
| 420 | ) |
| 421 | eq_(list(result)[0], (7,)) |
| 422 | |
| 423 | def test_spoiled(self): |
| 424 | with self._fixture() as (sess, bq): |
nothing calls this directly
no test coverage detected