(self)
| 57 | self.assertIn(sqlite3.sqlite_version, out) |
| 58 | |
| 59 | def test_cli_execute_sql(self): |
| 60 | out = self.expect_success(":memory:", "select 1") |
| 61 | self.assertIn("(1,)", out) |
| 62 | |
| 63 | def test_cli_execute_too_much_sql(self): |
| 64 | stderr = self.expect_failure(":memory:", "select 1; select 2") |
nothing calls this directly
no test coverage detected