mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
19 lines
347 B
Go
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)
|
|
}
|