Files
moby/daemon/licensing_test.go
Derek McGowan f74e5d48b3 Create github.com/moby/moby/v2 module
Signed-off-by: Derek McGowan <derek@mcg.dev>
2025-07-31 10:13:29 -07:00

19 lines
347 B
Go

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