Fix broken data dir test
authorbep <bjorn.erik.pedersen@gmail.com>
Wed, 11 Feb 2015 20:55:11 +0000 (21:55 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Wed, 11 Feb 2015 20:55:11 +0000 (21:55 +0100)
hugolib/site_test.go

index 57d9e1dcdca79b43ece110b048a50b0f25228792..871a53a00785d1308b0dcc9cc65f1fc91a93c9e6 100644 (file)
@@ -793,17 +793,17 @@ func TestDataDirYamlWithOverridenValue(t *testing.T) {
 }
 
 // issue 892
-func _TestDataDirMultipleSources(t *testing.T) {
+func TestDataDirMultipleSources(t *testing.T) {
        s1 := []source.ByteSource{
-               {filepath.FromSlash("test/first.toml"), []byte("[foo]\nbar = 1")},
+               {filepath.FromSlash("test/first.toml"), []byte("bar = 1")},
        }
 
        s2 := []source.ByteSource{
-               {filepath.FromSlash("test/first.toml"), []byte("[foo]\nbar = 2")},
-               {filepath.FromSlash("test/second.toml"), []byte("[foo]\ntender = 2")},
+               {filepath.FromSlash("test/first.toml"), []byte("bar = 2")},
+               {filepath.FromSlash("test/second.toml"), []byte("tender = 2")},
        }
 
-       expected := map[string]interface{}{"test": map[string]interface{}{"first": map[string]interface{}{"foo": map[string]interface{}{"bar": 1}}, "second": map[string]interface{}{"foo": map[string]interface{}{"tender": 2}}}}
+       expected, _ := parser.HandleTomlMetaData([]byte("[test.first]\nbar = 1\n[test.second]\ntender=2"))
 
        doTestDataDir(t, expected, []source.Input{&source.InMemorySource{ByteSource: s1}, &source.InMemorySource{ByteSource: s2}})