Codebase list golang-github-imdario-mergo / c6727c3f-0907-4f02-894b-b681425735d5/upstream pr80_test.go
c6727c3f-0907-4f02-894b-b681425735d5/upstream

Tree @c6727c3f-0907-4f02-894b-b681425735d5/upstream (Download .tar.gz)

pr80_test.go @c6727c3f-0907-4f02-894b-b681425735d5/upstreamraw · history · blame

package mergo_test

import (
	"testing"

	"github.com/imdario/mergo"
)

type mapInterface map[string]interface{}

func TestMergeMapsEmptyString(t *testing.T) {
	a := mapInterface{"s": ""}
	b := mapInterface{"s": "foo"}
	if err := mergo.Merge(&a, b); err != nil {
		t.Error(err)
	}
	if a["s"] != "foo" {
		t.Errorf("b not merged in properly: a.s.Value(%s) != expected(%s)", a["s"], "foo")
	}
}