(t *testing.T)
| 79 | } |
| 80 | |
| 81 | func TestLoadConfig_MissingFile(t *testing.T) { |
| 82 | dir := t.TempDir() |
| 83 | |
| 84 | _, err := LoadConfig(dir) |
| 85 | if err == nil { |
| 86 | t.Fatal("expected error for missing config file") |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | func TestLoadConfig_MalformedYAML(t *testing.T) { |
| 91 | dir := t.TempDir() |
nothing calls this directly
no test coverage detected