If using SQLite then an exception should be raised currently.
(self)
| 297 | |
| 298 | @sqlite_only |
| 299 | def test_remove_sqlite(self): |
| 300 | """ |
| 301 | If using SQLite then an exception should be raised currently. |
| 302 | """ |
| 303 | with self.assertRaises(ValueError) as manager: |
| 304 | MyTable.value.remove(2) |
| 305 | |
| 306 | self.assertEqual( |
| 307 | str(manager.exception), |
| 308 | "Only Postgres and Cockroach support array removing.", |
| 309 | ) |
| 310 | |
| 311 | |
| 312 | ############################################################################### |
nothing calls this directly
no test coverage detected