Beispiel #1
0
 def test_detach_alu(self):
     host = UnityHost(cli=t_rest(), _id='Host_10')
     lun = UnityLun(cli=t_rest(), _id="sv_4")
     resp = host.detach_alu(lun)
     assert_that(resp.is_ok(), equal_to(True))
Beispiel #2
0
 def test_detach_alu(self):
     host = UnityHost(cli=t_rest(), _id='Host_10')
     lun = UnityLun(cli=t_rest(), _id="sv_4")
     resp = host.detach_alu(lun)
     assert_that(resp.is_ok(), equal_to(True))
Beispiel #3
0
 def test_detach_attached_hlu(self):
     host = UnityHost(cli=t_rest(), _id='Host_10')
     lun = UnityLun(cli=t_rest(), _id="sv_2")
     resp = host.detach_alu(lun)
     assert_that(resp, equal_to(None))
Beispiel #4
0
 def test_detach_attached_hlu(self):
     host = UnityHost(cli=t_rest(), _id='Host_10')
     lun = UnityLun(cli=t_rest(), _id="sv_2")
     resp = host.detach_alu(lun)
     assert_that(resp, equal_to(None))