Exemple #1
0
 def test_used(self):
     capacity = VNXCapacity.get(t_cli())
     assert_that(capacity.used, equal_to(124140.749))
Exemple #2
0
 def test_free_storage_pool(self):
     capacity = VNXCapacity.get(t_cli())
     assert_that(capacity.free_storage_pool, equal_to(11958.398))
Exemple #3
0
 def test_total(self):
     capacity = VNXCapacity.get(t_cli())
     assert_that(capacity.total, equal_to(178269.891))
Exemple #4
0
 def test_free_raw_disk(self):
     capacity = VNXCapacity.get(t_cli())
     assert_that(capacity.free_raw_disk, equal_to(42170.744))
Exemple #5
0
 def get_capacity(self):
     return VNXCapacity.get(cli=self._cli)