Test::Able::Helpers - Test::Able::Helpers documentation


Test-Able documentation  | view source Contained in the Test-Able distribution.

Index


NAME

Top

Test::Able::Helpers

SYNOPSIS

Top

 use Test::Able::Helpers;

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

DESCRIPTION

Top

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

Top

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

Top

Justin DeVuyst, justin@devuyst.com

COPYRIGHT AND LICENSE

Top


Test-Able documentation  | view source Contained in the Test-Able distribution.