mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0640a14b4f
Using gomvpkg -from github.com/docker/docker/api/client -to github.com/docker/docker/cli/command -vcs_mv_cmd 'git mv {{.Src}} {{.Dst}}' Signed-off-by: Daniel Nephin <dnephin@docker.com>
29 lines
621 B
Go
29 lines
621 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/docker/docker/utils"
|
|
|
|
"github.com/docker/docker/cli/command"
|
|
)
|
|
|
|
func TestClientDebugEnabled(t *testing.T) {
|
|
defer utils.DisableDebug()
|
|
|
|
cmd := newDockerCommand(&command.DockerCli{})
|
|
cmd.Flags().Set("debug", "true")
|
|
|
|
if err := cmd.PersistentPreRunE(cmd, []string{}); err != nil {
|
|
t.Fatalf("Unexpected error: %s", err.Error())
|
|
}
|
|
|
|
if os.Getenv("DEBUG") != "1" {
|
|
t.Fatal("expected debug enabled, got false")
|
|
}
|
|
if logrus.GetLevel() != logrus.DebugLevel {
|
|
t.Fatalf("expected logrus debug level, got %v", logrus.GetLevel())
|
|
}
|
|
}
|