I've gotten comfortable with Test::More conventions, but it's difficult in my editor to really quickly create lots of tests.
is($o->index('You'), 1, 'objects index 1'); isnt($o->index(1), 1, 'objects index 2'); isnt($o->index(2), 2, 'objects index 2'); is($o->index($t), 3, 'objects index 3'); Incrementing numbers and substituting words and letters takes time because of the varying positions in the line of the different things I'm cutting and pasting. I need a more configurable format. One input per line and one expected value per line. I'm investigating ingy's Test::Base, but I'm wondering if there are simpler or competing solutions to this problem. Test::Builder seems to be about recycling tests from one module to another, not this particular problem. Correct me if I'm wrong. -- Dr Bean Those who can do. Those who can't teach. --G B Shaw