1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-23 00:00:07 +01:00
birdwatcher/vendor/github.com/imdario/mergo/issue50_test.go
Daniel Czerwonk 654e131a75 go dep
2018-01-15 19:04:38 +01:00

18 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()
}
}