(self)
| 315 | return go |
| 316 | |
| 317 | def _assert_no_data(self): |
| 318 | with testing.db.connect() as conn: |
| 319 | eq_( |
| 320 | conn.scalar(select(func.count("*")).select_from(self.table)), |
| 321 | 0, |
| 322 | ) |
| 323 | |
| 324 | def _assert_fn(self, x, value=None): |
| 325 | with testing.db.connect() as conn: |
no test coverage detected