We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0d94379 + c711574 commit efd4d1dCopy full SHA for efd4d1d
1 file changed
_tests/users_test.go
@@ -14,10 +14,10 @@ var _ = Describe("Users", func() {
14
It("can list all users", func() {
15
output, err := execute("deis users:list")
16
Expect(err).NotTo(HaveOccurred())
17
- // TODO: search for both test and test-admin users
18
Expect(output).To(SatisfyAll(
19
HavePrefix("=== Users"),
20
- ContainSubstring(testUser)))
+ ContainSubstring(testUser),
+ ContainSubstring(testAdminUser)))
21
})
22
23
0 commit comments