summaryrefslogtreecommitdiff
path: root/glanceclient/tests/unit
diff options
context:
space:
mode:
authorCyril Roelandt <tipecaml@gmail.com>2020-06-15 21:28:17 +0200
committerCyril Roelandt <cyril@redhat.com>2020-06-23 21:51:07 +0200
commitb513c8db4bf6a5b2eb0366117ca22e042dd3529e (patch)
treebc8d62a16c78b4c80ced107266100a5b461b51d7 /glanceclient/tests/unit
parent928935e5c0b8b43827fdf08b212d59d92b660924 (diff)
downloadpython-glanceclient-b513c8db4bf6a5b2eb0366117ca22e042dd3529e.tar.gz
Do not use the six library.
Change-Id: I3dbfcfa0f5f590a41ed549afd44537d8ed41433a
Diffstat (limited to 'glanceclient/tests/unit')
-rw-r--r--glanceclient/tests/unit/test_shell.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/glanceclient/tests/unit/test_shell.py b/glanceclient/tests/unit/test_shell.py
index 4823224..74d1c33 100644
--- a/glanceclient/tests/unit/test_shell.py
+++ b/glanceclient/tests/unit/test_shell.py
@@ -160,27 +160,6 @@ class ShellTest(testutils.TestCase):
sys.stderr = orig_stderr
return (stdout, stderr)
- def test_fixup_subcommand(self):
- arglist = [u'image-list', u'--help']
- expected_arglist = [u'image-list', u'--help']
-
- openstack_shell.OpenStackImagesShell._fixup_subcommand(
- arglist, arglist
- )
- self.assertEqual(expected_arglist, arglist)
-
- def test_fixup_subcommand_with_options_preceding(self):
- arglist = [u'--os-auth-token', u'abcdef', u'image-list', u'--help']
- unknown = arglist[2:]
- expected_arglist = [
- u'--os-auth-token', u'abcdef', u'image-list', u'--help'
- ]
-
- openstack_shell.OpenStackImagesShell._fixup_subcommand(
- unknown, arglist
- )
- self.assertEqual(expected_arglist, arglist)
-
def test_help_unknown_command(self):
shell = openstack_shell.OpenStackImagesShell()
argstr = '--os-image-api-version 2 help foofoo'