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