Subject: | Parameter test_dir not respected by generated test.pl |
The PXB new method takes an argument to name the generated test directory:
PXB->new({top_dir=>"./gen-lib",test_dir=>"tests"});
After a call to PXB::buildAPI(), The generated test driver script at :
gen-lib/test.pl
Still points to a test directory named 't'. See the generated test.pl
line 17:
Test::Harness::runtests(<$Bin/t/*.t>);
This should be:
Test::Harness::runtests(<$Bin/tests/*.t>);