Ejemplo n.º 1
0
 def test_get_lun_list(self):
     assert_that(len(VNXLun.get(t_cli())), equal_to(180))
Ejemplo n.º 2
0
 def get_lun(self, lun_id=None, name=None, lun_type=None):
     return VNXLun.get(self._cli, lun_id=lun_id, name=name,
                       lun_type=lun_type)
Ejemplo n.º 3
0
 def get_lun(self):
     lun_list = VNXLun.get(self._cli, poll=self.poll)
     return [l for l in lun_list if l.pool_name == self.name]
Ejemplo n.º 4
0
 def get_lun(self):
     lun_list = VNXLun.get(self._cli, poll=self.poll)
     return [l for l in lun_list if l.pool_name == self.name]
Ejemplo n.º 5
0
 def test_get_lun_list(self):
     assert_that(len(VNXLun.get(t_cli())), equal_to(180))