Home | History | Annotate | Download | only in self-test
      1 import time
      2 
      3 print "Instantiating a machine object"
      4 m = hosts.create_host(machines[0])
      5 print "Passed"
      6 
      7 print
      8 
      9 print "Running is_up on remote machine"
     10 m.is_up()
     11 time.sleep(1)
     12 m.is_up()
     13 print "Passed"
     14 
     15