Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

test::most::exception(3pm) [debian man page]

Test::Most::Exception(3pm)				User Contributed Perl Documentation				Test::Most::Exception(3pm)

NAME
Test::Most::Exception - Internal exception class VERSION
Version 0.25 SYNOPSIS
This is the exception thrown by "die_on_fail" by "Test::Most". EXPORT
We export only one function: "throw_failure" This is the exception for "die_on_fail". AUTHOR
Curtis Poe, "<ovid at cpan.org>" BUGS
Please report any bugs or feature requests to "bug-test-extended at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Most <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Most>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Test::Most You can also look for information at: o RT: CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Most <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Most> o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Test-Most <http://annocpan.org/dist/Test-Most> o CPAN Ratings http://cpanratings.perl.org/d/Test-Most <http://cpanratings.perl.org/d/Test-Most> o Search CPAN http://search.cpan.org/dist/Test-Most <http://search.cpan.org/dist/Test-Most> CAVEATS
The stack trace is likely useless due to how "Test::Builder" internals work. Sorry 'bout that. ACKNOWLEDGEMENTS
Many thanks to "perl-qa" for arguing about this so much that I just went ahead and did it :) Thanks to Aristotle for suggesting a better way to die or bailout. Thanks to 'swillert' (<http://use.perl.org/~swillert/>) for suggesting a better implementation of my "dumper explain" idea (<http://use.perl.org/~Ovid/journal/37004>). COPYRIGHT &; LICENSE Copyright 2008 Curtis Poe, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-05-27 Test::Most::Exception(3pm)

Check Out this Related Man Page

Test::Aggregate::Nested(3pm)				User Contributed Perl Documentation			      Test::Aggregate::Nested(3pm)

NAME
Test::Aggregate::Nested - Aggregate "*.t" tests to make them run faster. VERSION
Version 0.364 SYNOPSIS
use Test::Aggregate::Nested; my $tests = Test::Aggregate::Nested->new( { dirs => $aggregate_test_dir, verbose => 1, } ); $tests->run; DESCRIPTION
ALPHA WARNING: this is alpha code. Conceptually it is superior to "Test::Aggregate", but in reality, it might not be. We'll see. This module is almost identical to "Test::Aggregate" and will in the future be the preferred way of aggregating tests (until someone comes up with something better :) "Test::Aggregate::Nested" requires a 0.8901 or better of "Test::More". This is because we use its "subtest" function. Currently we "croak" if this function is not available. Because the TAP output is nested, you'll find it much easier to see which tests result in which output. For example, consider the following snippet of TAP. 1..2 1..5 ok 1 - aggtests/check_plan.t ***** 1 ok 2 - aggtests/check_plan.t ***** 2 ok 3 # skip checking plan (aggtests/check_plan.t ***** 3) ok 4 - env variables should not hang around ok 5 - aggtests/check_plan.t ***** 4 ok 1 - Tests for aggtests/check_plan.t 1..1 ok 1 - subs work! ok 2 - Tests for aggtests/subs.t At the end of each nested test is a summary test line explaining which program we ran tests for. "Test::Aggregate::Nested" asserts a plan equal to the number of test files aggregated, something which "Test::Aggregate" could not do. Because of this, we no longer export "Test::More" functions. If you need additional tests before or after aggregation, you'll need to run the aggregated tests in a subtest: use Test::More tests => 2; use Test::Aggregate::Nested; subtest 'Nested tests' => sub { Test::Aggregate::Nested->new({ dirs => 'aggtests/' })->run; }; ok $some_other_test; CAVEATS
"Test::Aggregate::Nested" is much cleaner than "Test::Aggregate", so I don't support the "dump" argument. If this is needed, let me know and I'll see about fixing this. The "variable will not stay shared" warnings from "Test::Aggregate" (see its CAVEATS section) are no longer applicable. AUTHOR
Curtis Poe, "<ovid at cpan.org>" BUGS
Please report any bugs or feature requests to "bug-test-aggregate at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Aggregate <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Aggregate>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Test::Aggregate You can also look for information at: o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Test-Aggregate <http://annocpan.org/dist/Test-Aggregate> o CPAN Ratings http://cpanratings.perl.org/d/Test-Aggregate <http://cpanratings.perl.org/d/Test-Aggregate> o RT: CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Aggregate <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Aggregate> o Search CPAN http://search.cpan.org/dist/Test-Aggregate <http://search.cpan.org/dist/Test-Aggregate> ACKNOWLEDGEMENTS
Many thanks to mauzo (<http://use.perl.org/~mauzo/> for helping me find the 'skip_all' bug. Thanks to Johan LindstrA~Xm for pointing me to Apache::Registry. COPYRIGHT &; LICENSE Copyright 2007 Curtis "Ovid" Poe, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.4 2011-08-27 Test::Aggregate::Nested(3pm)
Man Page