Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    plan skip_all => "Test::CheckManifest $min_tcm required" if $@;
     
    ok_manifest();
    
  2. or download this
    Testing Environment Variable List
    
    ...
    RPI_RTC=1
    RPI_MCP23017=1
    RELEASE_TESTING=1
    
  3. or download this
    BEGIN {
        if (! $ENV{RPI_ARDUINO}){
    ...
            plan skip_all => "Not on a Pi board\n";
        }
    }
    
  4. or download this
    PERL_DL_NONLAZY=1 "/home/pi/perl5/perlbrew/perls/perl-5.28.0/bin/perl"
    + "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harne
    +ss::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
    t/00-load.t ....................... ok   
    ...
    t/manifest.t ...................... skipped: Author tests not required
    + for installation
    t/pod-coverage.t .................. skipped: Author tests not required
    + for installation
    
  5. or download this
    use strict; use warnings;
      
    ...
    }
     
    Test::Pod::LinkCheck->new->all_pod_ok;