(t *testing.T, ns string)
| 671 | const Namespace = "nerdctl-test" |
| 672 | |
| 673 | func NewBaseWithNamespace(t *testing.T, ns string) *Base { |
| 674 | if ns == "" || ns == "default" || ns == Namespace { |
| 675 | t.Fatalf(`the other base namespace cannot be "%s"`, ns) |
| 676 | } |
| 677 | return newBase(t, ns, false, false) |
| 678 | } |
| 679 | |
| 680 | func NewBaseWithIPv6Compatible(t *testing.T) *Base { |
| 681 | return newBase(t, Namespace, true, false) |
searching dependent graphs…