diff --git a/cinderclient/tests/unit/v2/test_shell.py b/cinderclient/tests/unit/v2/test_shell.py index 03f25f689..da640e8aa 100644 --- a/cinderclient/tests/unit/v2/test_shell.py +++ b/cinderclient/tests/unit/v2/test_shell.py @@ -1213,3 +1213,7 @@ class ShellTest(utils.TestCase): self.run_command('snapshot-unmanage 1234') self.assert_called('POST', '/snapshots/1234/action', body={'os-unmanage': None}) + + def test_extra_specs_list(self): + self.run_command('extra-specs-list') + self.assert_called('GET', '/types?is_public=None')