diff --git a/viper_test.go b/viper_test.go index 2112de6..394bf57 100644 --- a/viper_test.go +++ b/viper_test.go @@ -65,18 +65,7 @@ id = "0001" type = "donut" name = "Cake" ppu = 0.55 -batter { - type = "Regular" -} -batter { - type = "Chocolate" -} -batter { - type = "Blueberry" -} -batter { - type = "Devil's Food" -}`) +`) var propertiesExample = []byte(` p_id: 0001 @@ -102,6 +91,10 @@ func initConfigs() { r = bytes.NewReader(jsonExample) unmarshalReader(r, v.config) + SetConfigType("hcl") + r = bytes.NewReader(hclExample) + unmarshalReader(r, v.config) + SetConfigType("properties") r = bytes.NewReader(propertiesExample) unmarshalReader(r, v.config) @@ -113,10 +106,6 @@ func initConfigs() { SetConfigType("json") remote := bytes.NewReader(remoteExample) unmarshalReader(remote, v.kvstore) - - SetConfigType("hcl") - r = bytes.NewReader(hclExample) - unmarshalReader(r, v.config) } func initYAML() { @@ -311,25 +300,6 @@ func TestHCL(t *testing.T) { assert.NotEqual(t, "cronut", Get("type")) } -func TestHCLList(t *testing.T) { - initHcl() - batters := []map[string]interface{}{ - map[string]interface{}{ - "type": "Regular", - }, - map[string]interface{}{ - "type": "Chocolate", - }, - map[string]interface{}{ - "type": "Blueberry", - }, - map[string]interface{}{ - "type": "Devil's Food", - }, - } - assert.Equal(t, batters, Get("batter")) -} - func TestRemotePrecedence(t *testing.T) { initJSON()