Help for this page

Select Code to Download


  1. or download this
    use English '-no_match_vars';
    
    ...
    ok( $EVAL_ERROR, 'this_should_die() did die' );
    like( $EVAL_ERROR, qr/exceptional error text/,
          'this_should_die() died for the expected reason );
    
  2. or download this
    {
        my $warning;
    ...
        non_warning_code();
        is( $warning, undef, 'non_warning_code() is clean' );
    }