Help for this page

Select Code to Download


  1. or download this
    use Test::More;
    use File::Find;
    ...
    
    find({ wanted => \&verify, follow_fast => 1 }, $storage_dir );
    diag( "It's normal to run more tests than planned because files have b
    +een created since the records were counted" );
    
  2. or download this
    # before testing.
    my $results_db = 'test_results.db';
    ...
    }
    my $db = tie my @test_results, 'DBM::Deep', 'test_results.db';
    Test::More->builder->{Test_Results} = \@test_results;
    
  3. or download this
    package Tie::StdArray::TestResults;
    use Tie::Array;
    ...
    
    tie my @test_results, 'Tie::StdArray::TestResults';
    Test::More->builder->{Test_Results} = \@test_results;