From: Pit Capitain Date: 2008-09-09T19:06:12+09:00 Subject: Re: Per suite unit test setup and teardown 2008/8/29 Peter Hickman : > Putting the global setup code outside the class does work but there is no > way to get the global teardown to work. Even putting it in an END block (a > horrible Perlism) doesn't work. Peter, you have to double the horror to get what you want: END { END { puts "this is run after the tests" } } I think I learned this trick from Ara. Regards, Pit