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

NAME

Test::Able::Helpers

SYNOPSIS

 use Test::Able::Helpers;

 my $t = MyTest;
 $t->shuffle_methods;
 $t->run_tests;

DESCRIPTION

Test::Able::Helpers are a collection of mixin methods that can be exported into the calling test class. These are meant to make doing some things with Test::Able easier.

See Test::Able::Cookbook for example usages.

METHODS

prune_super_methods

Removes any test-related methods from the associated method list if its from a superclass (literally not from $self's class).

By default it does this for all test-related method types. Type names can be optionally provided as args to limit what types this is done for.

shuffle_methods

Randomizes the test-related method lists.

By default it does this for all test-related method types. Type names can be optionally provided as args to limit what types this is done for.

get_loop_plan

Calculates the plan for a test method when used in a "Loop-Driven" context. This assumes the setup and teardown method lists are being explicitly run as many times as the test method.

Has two required args: the test method name and the test count. The test method name is used to lookup the plan of the test method itself. The test count is the number of times the test method will be called.

AUTHOR

Justin DeVuyst, justin@devuyst.com

COPYRIGHT AND LICENSE

Copyright 2009 by Justin DeVuyst.

This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.