(ids ...string)
| 20 | ) |
| 21 | |
| 22 | func enabledPluginConfigs(ids ...string) map[string]config.PluginInstanceConfig { |
| 23 | enabled := true |
| 24 | configs := make(map[string]config.PluginInstanceConfig, len(ids)) |
| 25 | for _, id := range ids { |
| 26 | configs[id] = config.PluginInstanceConfig{Enabled: &enabled} |
| 27 | } |
| 28 | return configs |
| 29 | } |
| 30 | |
| 31 | func TestHostApplyConfig_DisabledGlobalSkipsSnapshot(t *testing.T) { |
| 32 | loader := newTestSymbolLoader() |
no outgoing calls
no test coverage detected