Test::Builder

Test::Builder is a backend for building test libraries.
Download

Test::Builder Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • chromatic and Michael G Schwern
  • Publisher web site:
  • http://search.cpan.org/~samv/

Test::Builder Tags


Test::Builder Description

Test::Builder is a backend for building test libraries. Test::Builder is a backend for building test libraries.SYNOPSIS package My::Test::Module; use Test::Builder; require Exporter; @ISA = qw(Exporter); @EXPORT = qw(ok); my $Test = Test::Builder->new; $Test->output('my_logfile'); sub import { my($self) = shift; my $pack = caller; $Test->exported_to($pack); $Test->plan(@_); $self->export_to_level(1, $self, 'ok'); } sub ok { my($test, $name) = @_; $Test->ok($test, $name); }Test::Simple and Test::More have proven to be popular testing modules, but they're not always flexible enough. Test::Builder provides the a building block upon which to write your own test libraries which can work together. Requirements: · Perl


Test::Builder Related Software