1
0
mirror of https://github.com/moby/moby.git synced 2025-09-15 07:41:31 +03:00
Files
moby/integration-cli/docker_cli_network_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

28 lines
472 B
Go

package main
import (
"context"
"net/http/httptest"
"testing"
"github.com/moby/moby/v2/integration-cli/daemon"
)
type DockerCLINetworkSuite struct {
ds *DockerSuite
}
func (s *DockerCLINetworkSuite) TearDownTest(ctx context.Context, t *testing.T) {
s.ds.TearDownTest(ctx, t)
}
func (s *DockerCLINetworkSuite) OnTimeout(t *testing.T) {
s.ds.OnTimeout(t)
}
type DockerNetworkSuite struct {
server *httptest.Server
ds *DockerSuite
d *daemon.Daemon
}