mirror of
https://github.com/docker/compose.git
synced 2025-07-22 05:04:27 +02:00
Minor: fix test shorthand for --debug
: -D
and add tests case for mixing -D
and compose -f xxx up
Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
This commit is contained in:
parent
b8968e83cd
commit
066db98b8b
@ -25,7 +25,7 @@ import (
|
||||
|
||||
func TestFlag(t *testing.T) {
|
||||
root := &cobra.Command{}
|
||||
root.PersistentFlags().BoolP("debug", "d", false, "debug")
|
||||
root.PersistentFlags().BoolP("debug", "D", false, "debug")
|
||||
root.PersistentFlags().String("str", "str", "str")
|
||||
|
||||
testCases := []struct {
|
||||
@ -40,7 +40,7 @@ func TestFlag(t *testing.T) {
|
||||
},
|
||||
{
|
||||
name: "with short flags",
|
||||
args: []string{"-d", "run"},
|
||||
args: []string{"-D", "run"},
|
||||
expected: "run",
|
||||
},
|
||||
{
|
||||
@ -143,6 +143,11 @@ func TestFlag(t *testing.T) {
|
||||
args: []string{"compose", "-f", "titi.yaml", "up"},
|
||||
expected: "compose up",
|
||||
},
|
||||
{
|
||||
name: "-D compose -f xxx up",
|
||||
args: []string{"--debug", "compose", "-f", "titi.yaml", "up"},
|
||||
expected: "compose up",
|
||||
},
|
||||
}
|
||||
|
||||
for _, testCase := range testCases {
|
||||
|
Loading…
x
Reference in New Issue
Block a user