Home | History | Annotate | Download | only in scheduler

Lines Matching full:drone

7 """Tests for the drone task queue."""
23 """Drone task queue tests."""
26 """Create and initialize a Remote Drone.
28 @param hostname: The name of the host for the remote drone.
30 @return: A remote drone instance.
43 self.drone_utility_path = 'mock-drone-utility-path'
68 # Queue 2 calls against each drone, and confirm that the host's
72 for drone in drones:
73 drone.queue_call('foo')
74 drone.queue_call('bar')
79 stdin=cPickle.dumps(drone.get_calls()), stdout_tee=None,
86 for drone, result in results.iteritems():