Help for this page

Select Code to Download


  1. or download this
    package Test::Floober;
    
    ...
        # Do stuff here with $self->{foo} and $self->{bar}
        # that were passed in at new()
    }
    
  2. or download this
    use Test::Floober;
    
    ...
    my $test2 = Test::Floober->new( foo => 'abcd', bar => [ 2 .. 5 ] );
    
    Test::Class->runtests( $test, $test2 );