in reply to Re^2: Aggregating "ok" messages within an aggregating script
in thread Aggregating "ok" messages within an aggregating script

I am not experienced with test, separated test scripts seems popular. So I am not sure what I think is good or bad. How about using pod comment like Test::inline? And use prove command of Test::Harness? I mean like this.
... contents of module =test begin ok(1==1, "1 test") ok(2==2, "2 test") =test end
And grep this test.pl and test.
> cat test.pl |grep -v "^test" > testfile > perl testfile; prove testfile
regards