(self)
| 219 | generator) |
| 220 | |
| 221 | def test_DATETIME(self): |
| 222 | ticks = time() |
| 223 | def generator(row,col): |
| 224 | return self.db_module.TimestampFromTicks(ticks+row*86400-col*1313) |
| 225 | self.check_data_integrity( |
| 226 | ('col1 DATETIME',), |
| 227 | generator) |
| 228 | |
| 229 | def test_TIMESTAMP(self): |
| 230 | ticks = time() |
nothing calls this directly
no test coverage detected