When I run make test with the usual test harness that the CPAN modules have, it just displays a brief summary (if all goes well).
t/000_basic.t .......................... ok t/001_db_handle.t ...................... ok t/002_dr_handle.t ...................... ok t/003_db_can_connect.t ................. ok ... snip ... All tests successful. Files=30, Tests=606, 2 wallclock secs Result: PASS
If I run the tests individually, they output much more detailed information.
1..7 ok 1 - use DBIx::ProcedureCall::PostgreSQL; ok 2 - simple call to current_time ok 3 - call to power() with positional parameters ok 4 - call to power() using the run() interface ok 5 - call to setseed with a named parameter ok 6 - call a table function ok 7 - call a table function and fetch
How to run all tests in this multi-page mode? Is there anything I can pass to the make test ?
Thilo
source share