(self)
| 407 | yield sess, bq |
| 408 | |
| 409 | def test_first(self): |
| 410 | with self._fixture() as (sess, bq): |
| 411 | result = bq(sess).with_post_criteria( |
| 412 | lambda q: q.execution_options(yes=True) |
| 413 | ) |
| 414 | eq_(result.first(), (7,)) |
| 415 | |
| 416 | def test_iter(self): |
| 417 | with self._fixture() as (sess, bq): |
nothing calls this directly
no test coverage detected