summaryrefslogtreecommitdiff
path: root/ironicclient/tests/unit/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'ironicclient/tests/unit/test_shell.py')
-rw-r--r--ironicclient/tests/unit/test_shell.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ironicclient/tests/unit/test_shell.py b/ironicclient/tests/unit/test_shell.py
index 77a2f19..29865a7 100644
--- a/ironicclient/tests/unit/test_shell.py
+++ b/ironicclient/tests/unit/test_shell.py
@@ -249,10 +249,10 @@ class ShellTest(utils.BaseTestCase):
def test_ironic_api_version(self):
err = self.shell('--ironic-api-version 1.2 help')[1]
- self.assertFalse(err)
+ self.assertIn('The "ironic" CLI is deprecated', err)
err = self.shell('--ironic-api-version latest help')[1]
- self.assertFalse(err)
+ self.assertIn('The "ironic" CLI is deprecated', err)
self.assertRaises(exc.CommandError,
self.shell, '--ironic-api-version 1.2.1 help')
@@ -264,6 +264,7 @@ class ShellTest(utils.BaseTestCase):
def test_warning_on_no_version(self):
err = self.shell('help')[1]
self.assertIn('You are using the default API version', err)
+ self.assertIn('The "ironic" CLI is deprecated', err)
class TestCase(testtools.TestCase):