blob: edaf9ab6dacc3b379ec96a20d58e3d4d243b4d68 [file] [log] [blame]
package daemon
import (
"testing"
"github.com/moby/moby/api/types/system"
"github.com/moby/moby/v2/dockerversion"
"gotest.tools/v3/assert"
)
func TestFillLicense(t *testing.T) {
v := &system.Info{}
d := &Daemon{
root: "/var/lib/docker/",
}
d.fillLicense(v)
assert.Assert(t, v.ProductLicense == dockerversion.DefaultProductLicense)
}