(confBytes []byte, t *testing.T)
| 423 | `) |
| 424 | |
| 425 | func parseConfigFile(confBytes []byte, t *testing.T) *configFile { |
| 426 | conf := &configFile{} |
| 427 | err := conf.load(confBytes) |
| 428 | assert.Nil(t, err) |
| 429 | return conf |
| 430 | } |
| 431 | |
| 432 | func TestLoadConfigFile(t *testing.T) { |
| 433 | expected := configFile{ |
no test coverage detected