(self)
| 194 | generator) |
| 195 | |
| 196 | def test_DECIMAL(self): |
| 197 | # DECIMAL |
| 198 | def generator(row,col): |
| 199 | from decimal import Decimal |
| 200 | return Decimal("%d.%02d" % (row, col)) |
| 201 | self.check_data_integrity( |
| 202 | ('col1 DECIMAL(5,2)',), |
| 203 | generator) |
| 204 | |
| 205 | def test_DATE(self): |
| 206 | ticks = time() |
nothing calls this directly
no test coverage detected