(t *testing.T)
| 658 | } |
| 659 | |
| 660 | func TestLoadConfigFileWithUnencryptedSuffix(t *testing.T) { |
| 661 | conf, err := parseCreationRuleForFile(parseConfigFile(sampleConfigWithSuffixParameters, t), "/conf/path", "foobar", nil) |
| 662 | assert.Nil(t, err) |
| 663 | assert.Equal(t, "_unencrypted", conf.UnencryptedSuffix) |
| 664 | } |
| 665 | |
| 666 | func TestLoadConfigFileWithEncryptedSuffix(t *testing.T) { |
| 667 | conf, err := parseCreationRuleForFile(parseConfigFile(sampleConfigWithSuffixParameters, t), "/conf/path", "barfoo", nil) |
nothing calls this directly
no test coverage detected