예제 #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))
예제 #2
0
파일: test_host.py 프로젝트: crook/storops
 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))
예제 #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))
예제 #4
0
파일: test_host.py 프로젝트: crook/storops
 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))