The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test::Float::Straps - detailed analysis of test results

SYNOPSIS

  use Test::Float::Straps;

  my $strap = Test::Float::Straps->new;

  # Various ways to interpret a test
  my $results = $strap->analyze($name, \@test_output);
  my $results = $strap->analyze_fh($name, $test_filehandle);
  my $results = $strap->analyze_file($test_file);

  # UNIMPLEMENTED
  my %total = $strap->total_results;

  # Altering the behavior of the strap  UNIMPLEMENTED
  my $verbose_output = $strap->dump_verbose();
  $strap->dump_verbose_fh($output_filehandle);

DESCRIPTION

This is a hacked up copy of the Test::Harness version. See the Test::Float documentation and copyright.

AUTHOR

Bugs to Scott Walters scott@slowass.net.

Michael G Schwern <schwern at pobox.com>, Andy Lester <andy at petdance.com>.

SEE ALSO

Test::Harness