Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit e1d9568

Browse files
committed
fixup! fixup! Rework usage and descriptions
1 parent b693837 commit e1d9568

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

ci/integration/integration_test.go

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,10 @@ func TestCoderCLI(t *testing.T) {
4040
tcli.StdoutMatches("linux"),
4141
)
4242

43-
c.Run(ctx, "coder help").Assert(t,
43+
c.Run(ctx, "coder --help").Assert(t,
4444
tcli.Success(),
45-
tcli.StderrMatches("Commands:"),
46-
tcli.StderrMatches("Usage: coder"),
47-
tcli.StdoutEmpty(),
45+
tcli.StdoutMatches("COMMANDS:"),
46+
tcli.StdoutMatches("USAGE:"),
4847
)
4948

5049
headlessLogin(ctx, t, c)
@@ -53,6 +52,10 @@ func TestCoderCLI(t *testing.T) {
5352
tcli.Success(),
5453
)
5554

55+
c.Run(ctx, "coder envs ls").Assert(t,
56+
tcli.Success(),
57+
)
58+
5659
c.Run(ctx, "coder urls").Assert(t,
5760
tcli.Error(),
5861
)
@@ -66,14 +69,14 @@ func TestCoderCLI(t *testing.T) {
6669
)
6770

6871
var user entclient.User
69-
c.Run(ctx, `coder users ls -o json | jq -c '.[] | select( .username == "charlie")'`).Assert(t,
72+
c.Run(ctx, `coder users ls --output json | jq -c '.[] | select( .username == "charlie")'`).Assert(t,
7073
tcli.Success(),
7174
stdoutUnmarshalsJSON(&user),
7275
)
7376
assert.Equal(t, "user email is as expected", "charlie@coder.com", user.Email)
7477
assert.Equal(t, "username is as expected", "Charlie", user.Name)
7578

76-
c.Run(ctx, "coder users ls -o human | grep charlie").Assert(t,
79+
c.Run(ctx, "coder users ls --output human | grep charlie").Assert(t,
7780
tcli.Success(),
7881
tcli.StdoutMatches("charlie"),
7982
)
@@ -82,7 +85,7 @@ func TestCoderCLI(t *testing.T) {
8285
tcli.Success(),
8386
)
8487

85-
c.Run(ctx, "coder envs").Assert(t,
88+
c.Run(ctx, "coder envs ls").Assert(t,
8689
tcli.Error(),
8790
)
8891
}

ci/integration/secrets_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ func TestSecrets(t *testing.T) {
3636

3737
c.Run(ctx, "coder secrets create").Assert(t,
3838
tcli.Error(),
39-
tcli.StdoutEmpty(),
4039
)
4140

4241
// this tests the "Value:" prompt fallback

0 commit comments

Comments
 (0)