(self)
| 2040 | |
| 2041 | @unittest.expectedFailure # TODO: RUSTPYTHON Row with no description fails |
| 2042 | def test_row_no_description(self): |
| 2043 | cu = self.cx.cursor() |
| 2044 | self.assertIsNone(cu.description) |
| 2045 | |
| 2046 | row = sqlite.Row(cu, ()) |
| 2047 | self.assertEqual(row.keys(), []) |
| 2048 | with self.assertRaisesRegex(IndexError, "nokey"): |
| 2049 | row["nokey"] |
| 2050 | |
| 2051 | def test_row_is_a_sequence(self): |
| 2052 | from collections.abc import Sequence |
nothing calls this directly
no test coverage detected