12 lines
263 B
Go
12 lines
263 B
Go
|
package daemon // import "github.com/docker/docker/daemon"
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/docker/docker/api/types/container"
|
||
|
)
|
||
|
|
||
|
func TestToContainerdResources_Defaults(t *testing.T) {
|
||
|
checkResourcesAreUnset(t, toContainerdResources(container.Resources{}))
|
||
|
}
|