Help for this page

Select Code to Download


  1. or download this
    Some-Module/
        Changes
    ...
        README
        t/
            *.t test files here
    
  2. or download this
    #!perl -T
    
    ...
    BEGIN { use_ok('Some::Module') }
    
    diag "Testing Some::Module $Some::Module::VERSION";
    
  3. or download this
    #!perl -T
    
    ...
    is($eval_ok, 1, 'Test eval OK');
    is(defined $sm, 1, 'Test Some::Module object defined');
    isa_ok($sm, 'Some::Module');
    
  4. or download this
    #!perl -T
    
    ...
        my @args = (...);
        is($sm->meth(@args), ...
    }
    
  5. or download this
    #!perl -T
    
    ...
    };
    
    all_pod_files_ok();
    
  6. or download this
    #!perl -T
    
    ...
    };
    
    all_pod_coverage_ok();
    
  7. or download this
    #!perl
    
    ...
    
    is_deeply([manicheck()], [], 'Check files in "MANIFEST" exist.');
    is_deeply([filecheck()], [], 'Check for files not in "MANIFEST" or "MA
    +NIFEST.SKIP".');