Allow format selection in get_opts

Default is "value".

Change-Id: I244253f6cd53104a57ef12f6b14e1653c89d38bc
This commit is contained in:
Kyrylo Romanenko 2016-07-14 14:09:18 +03:00
parent 52cb503fb0
commit 9f346c3fb6
1 changed files with 3 additions and 2 deletions

View File

@ -58,8 +58,9 @@ class TestCase(testtools.TestCase):
return cls.openstack('configuration show ' + opts)
@classmethod
def get_opts(cls, fields):
return ' -f value ' + ' '.join(['-c ' + it for it in fields])
def get_opts(cls, fields, format='value'):
return ' -f {0} {1}'.format(format,
' '.join(['-c ' + it for it in fields]))
@classmethod
def assertOutput(cls, expected, actual):