(self)
| 70 | self.assertIn("OperationalError (SQLITE_ERROR)", stderr) |
| 71 | |
| 72 | def test_cli_on_disk_db(self): |
| 73 | self.addCleanup(unlink, TESTFN) |
| 74 | out = self.expect_success(TESTFN, "create table t(t)") |
| 75 | self.assertEqual(out, "") |
| 76 | out = self.expect_success(TESTFN, "select count(t) from t") |
| 77 | self.assertIn("(0,)", out) |
| 78 | |
| 79 | |
| 80 | @force_not_colorized_test_class |
nothing calls this directly
no test coverage detected