Add functional tests for flavor metadata
Change-Id: Iae7a3f61c0c9777ee2511558d8942243066a8c60
This commit is contained in:
parent
b0ed8660b1
commit
83f5befc5e
@ -44,3 +44,13 @@ class FlavorTests(test.TestCase):
|
||||
opts = self.get_show_opts(self.FIELDS)
|
||||
raw_output = self.openstack('flavor show ' + self.NAME + opts)
|
||||
self.assertEqual(self.NAME + "\n", raw_output)
|
||||
|
||||
def test_flavor_properties(self):
|
||||
opts = self.get_show_opts(["properties"])
|
||||
raw_output = self.openstack(
|
||||
'flavor set --property a=b --property c=d ' + self.NAME + opts)
|
||||
self.assertEqual("a='b', c='d'\n", raw_output)
|
||||
|
||||
raw_output = self.openstack('flavor unset --property a ' +
|
||||
self.NAME + opts)
|
||||
self.assertEqual("c='d'\n", raw_output)
|
||||
|
Loading…
Reference in New Issue
Block a user