(values map[string]string)
| 9 | ) |
| 10 | |
| 11 | func envFromMap(values map[string]string) func(string) string { |
| 12 | return func(key string) string { |
| 13 | return values[key] |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | func TestValidateRunModeRejectsUnsupportedMode(t *testing.T) { |
| 18 | for _, mode := range []string{"standalone", "control-plane", "duckdb-service", "reshard-runner"} { |
no outgoing calls
no test coverage detected