There was an error while loading. Please reload this page.
volume type show
2 parents 8d8440c + d7d2b92 commit bd022cbCopy full SHA for bd022cb
1 file changed
functional/tests/volume/v1/test_volume_type.py
@@ -38,3 +38,8 @@ def test_volume_type_list(self):
38
opts = self.get_list_opts(self.HEADERS)
39
raw_output = self.openstack('volume type list' + opts)
40
self.assertIn(self.NAME, raw_output)
41
+
42
+ def test_volume_type_show(self):
43
+ opts = self.get_show_opts(self.FIELDS)
44
+ raw_output = self.openstack('volume type show ' + self.NAME + opts)
45
+ self.assertEqual(self.NAME + "\n", raw_output)
0 commit comments