daemon/licensing_test.go
896d1b1c
 package daemon // import "github.com/docker/docker/daemon"
 
 import (
 	"testing"
 
 	"github.com/docker/docker/api/types"
 	"github.com/docker/docker/dockerversion"
 	"gotest.tools/assert"
 )
 
1082d1ed
 func TestFillLicense(t *testing.T) {
896d1b1c
 	v := &types.Info{}
 	d := &Daemon{
 		root: "/var/lib/docker/",
 	}
 	d.fillLicense(v)
 	assert.Assert(t, v.ProductLicense == dockerversion.DefaultProductLicense)
 }