(t *testing.T)
| 664 | } |
| 665 | |
| 666 | func TestLoadConfigFileWithEncryptedSuffix(t *testing.T) { |
| 667 | conf, err := parseCreationRuleForFile(parseConfigFile(sampleConfigWithSuffixParameters, t), "/conf/path", "barfoo", nil) |
| 668 | assert.Nil(t, err) |
| 669 | assert.Equal(t, "_enc", conf.EncryptedSuffix) |
| 670 | } |
| 671 | |
| 672 | func TestLoadConfigFileWithUnencryptedRegex(t *testing.T) { |
| 673 | conf, err := parseCreationRuleForFile(parseConfigFile(sampleConfigWithUnencryptedRegexParameters, t), "/conf/path", "barbar", nil) |
nothing calls this directly
no test coverage detected