ceph-csi/vendor/github.com/imdario/mergo/issue50_test.go
2018-12-19 15:29:25 +01:00

19 lines
227 B
Go

package mergo
import (
"testing"
"time"
)
type testStruct struct {
time.Duration
}
func TestIssue50Merge(t *testing.T) {
to := testStruct{}
from := testStruct{}
if err := Merge(&to, from); err != nil {
t.Fail()
}
}