start working on startup tests for modules

This commit is contained in:
Joel Wetzell
2026-05-19 21:56:04 -05:00
parent 5db23627d6
commit 7c8695b9fe
10 changed files with 374 additions and 11 deletions
-10
View File
@@ -242,16 +242,6 @@ func TestBadDbQuery(t *testing.T) {
wrappedPayloadModules: map[string]common.Module{},
errorString: "db.query unable to find module with id: test",
},
{
name: "module not found in context",
payload: test.TestStruct{Data: "hello"},
params: map[string]any{
"module": "test",
"query": "select * from test;",
},
wrappedPayloadModules: map[string]common.Module{},
errorString: "db.query unable to find module with id: test",
},
{
name: "module not a DatabseModule",
payload: test.TestStruct{Data: "hello"},