(self)
| 109 | ] |
| 110 | |
| 111 | async def test_sql_dml_insert_01(self): |
| 112 | # base case |
| 113 | await self.scon.execute( |
| 114 | ''' |
| 115 | INSERT INTO "Document" (title) VALUES ('Meeting report') |
| 116 | ''' |
| 117 | ) |
| 118 | res = await self.squery_values('SELECT title FROM "Document"') |
| 119 | self.assertEqual(res, [['Meeting report (new)']]) |
| 120 | |
| 121 | async def test_sql_dml_insert_02(self): |
| 122 | # when columns are not specified, all columns are expected, |
nothing calls this directly
no test coverage detected