• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import time
2
3print "Instantiating a machine object"
4m = hosts.create_host(machines[0])
5print "Passed"
6
7print
8
9print "Running is_up on remote machine"
10m.is_up()
11time.sleep(1)
12m.is_up()
13print "Passed"
14
15