Home | History | Annotate | Download | only in tests
      1 print "--SELFTEST-- loading test"
      2 
      3 def step_init():
      4 	job.next_step([step_two])
      5 	job.next_step([step_three])
      6 	print "--STEPTEST-- step_init called"
      7 	
      8 def step_two():
      9 	print "--STEPTEST-- step_two called"
     10 	
     11 def step_three():
     12 	print "--STEPTEST-- step_three called"
     13