mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
28 lines
595 B
Go
28 lines
595 B
Go
|
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)
|
||
|
}
|
||
|
}
|