(t *testing.T)
| 3574 | } |
| 3575 | |
| 3576 | func TestClusterConfigOnFolderRemove(t *testing.T) { |
| 3577 | testConfigChangeTriggersClusterConfigs(t, true, false, nil, func(cfg config.Wrapper) { |
| 3578 | rcfg := cfg.RawCopy() |
| 3579 | rcfg.Folders = nil |
| 3580 | replace(t, cfg, rcfg) |
| 3581 | }) |
| 3582 | } |
| 3583 | |
| 3584 | func TestClusterConfigOnFolderPause(t *testing.T) { |
| 3585 | testConfigChangeTriggersClusterConfigs(t, true, false, nil, func(cfg config.Wrapper) { |
nothing calls this directly
no test coverage detected