Test::DatabaseRow::Result(3pm) | User Contributed Perl Documentation | Test::DatabaseRow::Result(3pm) |
Test::DatabaseRow::Result - represent the result of some db testing
use Test::More tests => 1; use Test::DatabaseRow::Result; # create a test results my $result_object = Test::DatabaseRow::Result->new( is_error => 1, diag => [ "The WHAM overheaded!" ] ); # have those results render to Test::Builder $result_object->pass_to_test_builder("fire main gun");
This module is used by Test::DatabaseRow::Object to represent the result of a test.
These are the read only accessors of the object. They may be (optionally) set at object creation time by passing their name and value to the constructor.
Each accessor may be queried by prefixing its name with the "has_" to determine
Bugs (and requests for new features) can be reported though the CPAN RT system: <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-DatabaseRow>
Alternatively, you can simply fork this project on github and send me pull requests. Please see <http://github.com/2shortplanks/Test-DatabaseRow>
Written by Mark Fowler mark@twoshortplanks.com
Copyright Mark Fowler 2011.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Test::DatabaseRow::Object, Test::DatabaseRow, Test::Builder, DBI
2022-06-17 | perl v5.34.0 |