mirror of
https://github.com/moby/moby.git
synced 2026-01-11 02:31:44 +00:00
12 lines
215 B
Go
12 lines
215 B
Go
package daemon
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/moby/moby/api/types/container"
|
|
)
|
|
|
|
func TestToContainerdResources_Defaults(t *testing.T) {
|
|
checkResourcesAreUnset(t, toContainerdResources(container.Resources{}))
|
|
}
|