Help for this page

Select Code to Download


  1. or download this
    
    use Test::Exception;
    ...
        { 0/0 }
        qr/Illegal division by zero/,
        "whatever_sub() throws if trying to divide by zero ok";
    
  2. or download this
    my $div_by_zero_ok = eval {
        0 / 0;
    ...
        $div_by_zero_ok,
        undef,
        "whatever_sub() barfs properly if dividing by zero ok";