Codebase list golang-github-imdario-mergo / 2da3f1c7-3c64-4ff1-89d7-9e946d505f96/main issue61_test.go
2da3f1c7-3c64-4ff1-89d7-9e946d505f96/main

Tree @2da3f1c7-3c64-4ff1-89d7-9e946d505f96/main (Download .tar.gz)

issue61_test.go @2da3f1c7-3c64-4ff1-89d7-9e946d505f96/main

6720d30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package mergo

import (
	"reflect"
	"testing"
)

func TestIssue61MergeNilMap(t *testing.T) {
	type T struct {
		I map[string][]string
	}
	t1 := T{}
	t2 := T{I: map[string][]string{"hi": {"there"}}}
	if err := Merge(&t1, t2); err != nil {
		t.Fail()
	}
	if !reflect.DeepEqual(t2, T{I: map[string][]string{"hi": {"there"}}}) {
		t.FailNow()
	}
}