volume type show
1 parent 149ce52 commit d7d2b92Copy full SHA for d7d2b92
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