(t *testing.T)
| 808 | } |
| 809 | |
| 810 | func TestParseIDConfig_NotAMap(t *testing.T) { |
| 811 | cfg := parseIDConfig("not-a-map") |
| 812 | |
| 813 | if cfg != nil { |
| 814 | t.Errorf("expected nil for non-map input, got %+v", cfg) |
| 815 | } |
| 816 | } |
| 817 | |
| 818 | func TestParseIDConfig_ViperIntTypes(t *testing.T) { |
| 819 | // Viper may return int64 or float64 for numeric values |
nothing calls this directly
no test coverage detected