Help for this page

Select Code to Download


  1. or download this
    use Test::More qw(no_plan);
    ok(1);
       # CRASH!!
    exit(0);
    ok(2);
    
  2. or download this
    PERL_DL_NONLAZY=1 perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" test.pl
  3. or download this
    All tests successful.
    Files=1, Tests=1
    
  4. or download this
    use Test::More tests => 2;
    
  5. or download this
    # Looks like you planned 2 tests but only ran 1.