summaryrefslogtreecommitdiff
path: root/vendor/github.com/imdario/mergo/issue23_test.go
blob: 283f8c6a3f5f71ebfcf3fdbaa4b76ae98c8ccf4b (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package mergo

import (
	"testing"
	"time"
)

type document struct {
	Created *time.Time
}

func TestIssue23MergeWithOverwrite(t *testing.T) {
	now := time.Now()
	dst := document{
		&now,
	}
	expected := time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
	src := document{
		&expected,
	}
	if err := MergeWithOverwrite(&dst, src); err != nil {
		t.Errorf("Error while merging %s", err)
	}
	if !dst.Created.Equal(*src.Created) { //--> https://golang.org/pkg/time/#pkg-overview
		t.Fatalf("Created not merged in properly: dst.Created(%v) != src.Created(%v)", dst.Created, src.Created)
	}
}