summaryrefslogtreecommitdiff
path: root/keystoneclient/tests/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'keystoneclient/tests/test_shell.py')
-rw-r--r--keystoneclient/tests/test_shell.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/keystoneclient/tests/test_shell.py b/keystoneclient/tests/test_shell.py
index 2f7586b..fe720fe 100644
--- a/keystoneclient/tests/test_shell.py
+++ b/keystoneclient/tests/test_shell.py
@@ -115,6 +115,12 @@ class ShellTest(utils.TestCase):
self.assertThat(help_text,
matchers.MatchesRegex(required))
+ def test_help_command_with_no_action_choices(self):
+ required = 'usage: keystone user-update'
+ help_text = self.shell('help user-update')
+ self.assertThat(help_text,
+ matchers.MatchesRegex(required))
+
def test_auth_no_credentials(self):
with testtools.ExpectedException(
exceptions.CommandError, 'Expecting'):