Help for this page

Select Code to Download


  1. or download this
    sub assertOk (&$;) {
        my( $package, $file, $line ) = caller;
    
  2. or download this
        my( $code, $desc ) = @_;
        warn sprintf "%s %d # %s [%s(%d)]\n",
    
  3. or download this
            ( $code->() ? 'ok' : 'not ok' ),
            ++$nTests, $desc, $file, $line
        ;
    }