mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
feat(cli): add provisioner list and provisioner jobs list (#16030)
This commit is contained in:
committed by
GitHub
parent
91204c2e3c
commit
c0db364f3f
@ -55,6 +55,22 @@ func TestCommandHelp(t *testing.T) {
|
||||
Name: "coder users list",
|
||||
Cmd: []string{"users", "list"},
|
||||
},
|
||||
clitest.CommandHelpCase{
|
||||
Name: "coder provisioner list",
|
||||
Cmd: []string{"provisioner", "list"},
|
||||
},
|
||||
clitest.CommandHelpCase{
|
||||
Name: "coder provisioner list --output json",
|
||||
Cmd: []string{"provisioner", "list", "--output", "json"},
|
||||
},
|
||||
clitest.CommandHelpCase{
|
||||
Name: "coder provisioner jobs list",
|
||||
Cmd: []string{"provisioner", "jobs", "list"},
|
||||
},
|
||||
clitest.CommandHelpCase{
|
||||
Name: "coder provisioner jobs list --output json",
|
||||
Cmd: []string{"provisioner", "jobs", "list", "--output", "json"},
|
||||
},
|
||||
))
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user