Is there, among the plethora of testing libraries, something that will give me a fresh instance of an object for each test, or group of tests? I looked (maybe not hard enough), but didn't see anything.
Well, there's Test::Unit but that's a whole pile of different. You can just do what I do: put every group of tests in a bare block that starts with isa_ok(my $object = new Object);
fresh object for test sets (Score:1)
rjbs
Re:fresh object for test sets (Score:2)