def test_closedloopslew(skyxconn): ''' Test a closed loop slew This needs the camera, telescope and image link set up correctly hence it will usually fail... ''' skyx.ccdsoftCamera().Connect() skyx.sky6RASCOMTele().Connect() assert skyxconn.closedloopslew("M81") == True
def test_scopeDisconnect(skyxconn): ''' Test sky6RASCOMTeleDisconnect This seems to be an expected fail as the telescope does not disconnect. Need to look into this ''' tele = skyx.sky6RASCOMTele() assert tele.Disconnect() == True
def test_scopeConnect(skyxconn): ''' Test sky6RASCOMTeleConnect ''' tele = skyx.sky6RASCOMTele() assert tele.Connect() == True