Help for this page

Select Code to Download


  1. or download this
    # t/Data.pm
    package t::Data;
    ...
    );
    
    1;
    
  2. or download this
    # t/42_somefunctionality.t
    use Test::More; # no plan here!
    ...
    for my $case ( @t::Data::cases ) {
      # 13 tests here for each case
    }
    
  3. or download this
    # t/DBM/Deep/Test.pm
    package t::DBM::Deep::Test;
    ...
    }
    
    1;
    
  4. or download this
    # t/DBM/Deep/Feature1.pm
    use base 't::DBM::Deep::Test';
    ...
    }
    
    1;
    
  5. or download this
    # runtests.t
    
    ...
    # etc...
    
    Test::Class->runtests();