blob: 68d5defae40e42c5c29d1acc2e665bc7243b2e2f [file] [log] [blame]
apw7d9f8002006-04-04 08:52:52 +00001print "--SELFTEST-- loading test"
2
3def step_init():
4 job.next_step([step_two])
5 print "--STEPTEST-- step_init called"
6 job.quit()
7
8def step_two():
9 job.next_step([step_three])
10 print "--STEPTEST-- step_two called"
11 job.quit()
12
13def step_three():
14 print "--STEPTEST-- step_three called"