add test for reading from sqlite file

This commit is contained in:
Joel Wetzell
2026-05-20 17:26:50 -05:00
parent 849a59a63b
commit 70c4aa172a
2 changed files with 6 additions and 0 deletions
+6
View File
@@ -47,6 +47,12 @@ func TestGoodDbSqlite(t *testing.T) {
"dsn": ":memory:",
},
},
{
name: "file db",
params: map[string]any{
"dsn": "test.db",
},
},
}
for _, test := range testCases {