(self)
| 118 | self.assertRows(0) |
| 119 | |
| 120 | def testWrongQuery(self): |
| 121 | # It should be possible to run a correct query after getting an error from a wrong query. |
| 122 | try: |
| 123 | self.db.select("notthere") |
| 124 | except: |
| 125 | pass |
| 126 | self.db.select("person") |
| 127 | |
| 128 | def testNestedTransactions(self): |
| 129 | t1 = self.db.transaction() |