(t *testing.T)
| 299 | } |
| 300 | |
| 301 | func TestConfigHasher_EmptyConfig(t *testing.T) { |
| 302 | t.Parallel() |
| 303 | hasher := ConfigHasher(newTestAPI()) |
| 304 | if got := hasher(); got != "" { |
| 305 | t.Fatalf("expected empty hash for no-config manager, got %q", got) |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | func TestConfigHasher_NonEmptyChanges(t *testing.T) { |
| 310 | t.Parallel() |
nothing calls this directly
no test coverage detected