(t *testing.T)
| 12 | ) |
| 13 | |
| 14 | func TestEnabledFromConfig_Default(t *testing.T) { |
| 15 | cfg := &config.Config{} |
| 16 | cfg.SetDefaults() |
| 17 | |
| 18 | plugins, missing := EnabledFromConfig(cfg) |
| 19 | |
| 20 | require.Empty(t, missing) |
| 21 | require.Empty(t, plugins) |
| 22 | } |
| 23 | |
| 24 | func TestEnabledFromConfig_CustomList(t *testing.T) { |
| 25 | cfg := &config.Config{} |
nothing calls this directly
no test coverage detected