(self)
| 421 | eq_(list(result)[0], (7,)) |
| 422 | |
| 423 | def test_spoiled(self): |
| 424 | with self._fixture() as (sess, bq): |
| 425 | result = bq.spoil()(sess).with_post_criteria( |
| 426 | lambda q: q.execution_options(yes=True) |
| 427 | ) |
| 428 | |
| 429 | eq_(list(result)[0], (7,)) |
| 430 | |
| 431 | def test_get(self): |
| 432 | User = self.classes.User |
nothing calls this directly
no test coverage detected