(t *testing.T)
| 613 | } |
| 614 | |
| 615 | func TestLoadConfigFileWithOnlyDestinationRules(t *testing.T) { |
| 616 | conf, err := parseCreationRuleForFile(parseConfigFile(sampleConfigWithOnlyDestinationRules, t), "/conf/path", "foobar2000", nil) |
| 617 | assert.Nil(t, conf) |
| 618 | assert.Nil(t, err) |
| 619 | } |
| 620 | |
| 621 | func TestKeyGroupsForFile(t *testing.T) { |
| 622 | conf, err := parseCreationRuleForFile(parseConfigFile(sampleConfig, t), "/conf/path", "foobar2000", nil) |
nothing calls this directly
no test coverage detected