mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f0d277fe84
… and do not use the `docker` cli in it. One of the reason of this move is to not make `integration` package using legacy `integration-cli` package. Next move will be to support swarm within this package *and* provide some helper function using the api (compared to the one using cli in `integration-cli/daemon` package). Signed-off-by: Vincent Demeester <vincent@sbr.pm>
29 lines
485 B
Go
29 lines
485 B
Go
package logging // import "github.com/docker/docker/integration/plugin/logging"
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/internal/test/environment"
|
|
)
|
|
|
|
var (
|
|
testEnv *environment.Execution
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
var err error
|
|
testEnv, err = environment.New()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
err = environment.EnsureFrozenImagesLinux(testEnv)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
testEnv.Print()
|
|
os.Exit(m.Run())
|
|
}
|