PSA::Test::Builder

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

PSA::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/

PSA::Test::Builder Tags


PSA::Test::Builder Description

PSA::Test::Builder is a backend for building test libraries. PSA::Test::Builder is a backend for building test libraries.SYNOPSIS package My::Test::Module; use PSA::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); } END { $Test->_ending(); }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.And the block was found to be rotten, and so PSA::Test::Builder was constructed. Requirements: · Perl


PSA::Test::Builder Related Software