зеркало из https://github.com/docker/compose-cli.git
Merge pull request #2143 from gtardif/extension_cli_metrics
Add extension commands in command metrics
This commit is contained in:
Коммит
84ba23e928
|
@ -35,7 +35,9 @@ var managementCommands = []string{
|
|||
"container",
|
||||
"context",
|
||||
"create",
|
||||
"dev",
|
||||
"ecs",
|
||||
"extension",
|
||||
"image",
|
||||
"imagetools",
|
||||
"key",
|
||||
|
@ -75,6 +77,7 @@ var commands = []string{
|
|||
"convert",
|
||||
"cp",
|
||||
"create",
|
||||
"debug",
|
||||
"demote",
|
||||
"deploy",
|
||||
"df",
|
||||
|
@ -118,6 +121,7 @@ var commands = []string{
|
|||
"remove",
|
||||
"rename",
|
||||
"render",
|
||||
"reset",
|
||||
"restart",
|
||||
"revoke",
|
||||
"rm",
|
||||
|
@ -138,6 +142,7 @@ var commands = []string{
|
|||
"stop",
|
||||
"tag",
|
||||
"top",
|
||||
"ui-source",
|
||||
"uninstall",
|
||||
"unlock",
|
||||
"unlock-key",
|
||||
|
|
|
@ -173,6 +173,11 @@ func TestGetCommand(t *testing.T) {
|
|||
args: []string{"--debug", "compose", "-f", "titi.yaml", "up"},
|
||||
expected: "compose up",
|
||||
},
|
||||
{
|
||||
name: "extension install myorg/my-extension",
|
||||
args: []string{"extension", "install", "myorg/my-extension"},
|
||||
expected: "extension install",
|
||||
},
|
||||
}
|
||||
|
||||
for _, testCase := range testCases {
|
||||
|
|
Загрузка…
Ссылка в новой задаче