Changeset 1497
- Timestamp:
- 04/09/08 15:39:22 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/exp/kindlund-simpler_agent/lib/HoneyClient/Manager.pm
r1495 r1497 319 319 =back 320 320 321 #=begin testing 322 # 323 # XXX: Test init() method. 324 # 325 #=end testing 321 =begin testing 322 323 SKIP: { 324 skip "HoneyClient::Manager->init() is not implemented, yet.", 1; 325 } 326 327 =end testing 326 328 327 329 =cut … … 349 351 =back 350 352 351 #=begin testing 352 # 353 # XXX: Test destroy() method. 354 # 355 #=end testing 353 =begin testing 354 355 SKIP: { 356 skip "HoneyClient::Manager->destroy() is not implemented, yet.", 1; 357 } 358 359 =end testing 356 360 357 361 =cut … … 430 434 =head1 EXPORTS 431 435 432 =head2 run( )436 =head2 run(driver_name => $driver_name, master_vm_config => $master_vm_config, work => $work) 433 437 434 438 =over 4 435 439 436 # XXX: Fill this in.440 Runs the Manager code, using the specified arguments. 437 441 438 442 I<Inputs>: 439 B<$arg> is an optional argument. 440 441 driver_name 442 master_vm_config 443 work 444 445 I<Output>: XXX: Fill this in. 443 B<$driver_name> is an optional argument, indicating the driver name to 444 use when driving all cloned VMs. 445 B<$master_vm_config> is an optional argument, indicating the absolute 446 path to the master VM configuration file that each clone VM should use. 447 B<$work> is an optional argument, indicating the work each cloned 448 VM should process. 446 449 447 450 =back 448 451 449 #=begin testing 450 # 451 # XXX: Fill this in. 452 # 453 #=end testing 452 =begin testing 453 454 SKIP: { 455 skip "HoneyClient::Manager->run() can't be easily tested, yet.", 1; 456 } 457 458 =end testing 454 459 455 460 =cut honeyclient/branches/exp/kindlund-simpler_agent/t/honeyclient_manager.t
r1495 r1497 109 109 110 110 111 # =begin testing 112 { 113 SKIP: { 114 skip "HoneyClient::Manager->init() is not implemented, yet.", 1; 115 } 116 } 117 118 119 120 # =begin testing 121 { 122 SKIP: { 123 skip "HoneyClient::Manager->destroy() is not implemented, yet.", 1; 124 } 125 } 126 127 128 129 # =begin testing 130 { 131 SKIP: { 132 skip "HoneyClient::Manager->run() can't be easily tested, yet.", 1; 133 } 134 } 135 136 137 111 138 112 139 1;
