Codebase list golang-github-imdario-mergo / 6c9785ee-345b-4ec8-967f-e663b9c4f399/upstream issue50_test.go
6c9785ee-345b-4ec8-967f-e663b9c4f399/upstream

Tree @6c9785ee-345b-4ec8-967f-e663b9c4f399/upstream (Download .tar.gz)

issue50_test.go @6c9785ee-345b-4ec8-967f-e663b9c4f399/upstreamraw · history · blame

package mergo_test

import (
	"testing"
	"time"

	"github.com/imdario/mergo"
)

type testStruct struct {
	time.Duration
}

func TestIssue50Merge(t *testing.T) {
	to := testStruct{}
	from := testStruct{}

	if err := mergo.Merge(&to, from); err != nil {
		t.Fail()
	}
}