summaryrefslogtreecommitdiffstats
path: root/cmd/commands/team_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/commands/team_test.go')
-rw-r--r--cmd/commands/team_test.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/cmd/commands/team_test.go b/cmd/commands/team_test.go
index 1a91df4bc..ac006dbe1 100644
--- a/cmd/commands/team_test.go
+++ b/cmd/commands/team_test.go
@@ -4,6 +4,7 @@
package commands
import (
+ "strings"
"testing"
"github.com/mattermost/mattermost-server/api"
@@ -78,3 +79,20 @@ func TestLeaveTeam(t *testing.T) {
}
}
}
+
+func TestListTeams(t *testing.T) {
+ th := api.Setup().InitBasic()
+ defer th.TearDown()
+
+ id := model.NewId()
+ name := "name" + id
+ displayName := "Name " + id
+
+ cmd.CheckCommand(t, "team", "create", "--name", name, "--display_name", displayName)
+
+ output := cmd.CheckCommand(t, "team", "list", th.BasicTeam.Name, th.BasicUser.Email)
+
+ if !strings.Contains(string(output), name) {
+ t.Fatal("should have the created team")
+ }
+}