(self)
| 148 | sess.close() |
| 149 | |
| 150 | def test_plain(self): |
| 151 | User = self.classes.User |
| 152 | sess = fixture_session() |
| 153 | sess.query(User).with_for_update().all() |
| 154 | sess.close() |
| 155 | |
| 156 | |
| 157 | class CompileTest(_fixtures.FixtureTest, AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected