Help for this page

Select Code to Download


  1. or download this
      my $thing = Thing->new(model => $model);
      print Dumper $thing;
      ok( $thing->model, $model );
    
  2. or download this
      $thing->do_something_interesting();
      # the thing's model shouldn't have changed
      ok( $thing->model, $model ) or print Dumper $thing;