Michael G Schwern wrote
>Hmmm. concat.t is waaaay too basic to use Test::More on it. delete.t
>is pushing it. die.t and die_exit.t cannot be tested with Test::More
>since it relies on that functionality.
>
Okay, not a problem. I can clean up the prints anyway:
print "not " unless some_condition;
print "ok nnn\n";
goes to
print (some _condition)
? "ok nnn\n";
: "not ok nnn\n";
>
>Ok. Let me run through t/op and give you a list of what's safe to use
>Test::More on and what's not. Let you know in a bit.
>
Great, thanks. I can clean up the others as noted above.
--- Joe M.