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

NAME

Test::Group::Plan - test plans for test groups

SYNOPSIS

  use Test::Group;
  use Test::Group::Plan;

  test_plan 3, mytest => sub {
      ok 1, "one";
      ok 2, "two";
      ok 3, "three";
  };

DESCRIPTION

This module is an extension for Test::Group. It allows you to declare the number of tests that a particular group will run.

If you are not already familiar with Test::Group now would be a good time to go take a look.

By default, Test::Group doesn't care how many tests you run within each group. This is convenient, but sometimes you know how many tests should be run, and a plan provides a useful extra check that your test script is doing what you think it is.

EXPORTS

The following function is exported by default.

test_plan ($plan, $name, $groupsub)

As the test() function exported by Test::Group, but with an additional $plan parameter. The value of $plan must be numeric.

An extra test will be run after $groupsub returns, to check that the number of tests run was as expected. Note that you should not add 1 to the plan to account for this extra test.

SEE ALSO

Test::Group

AUTHORS

Nick Cleaton <ncleaton@cpan.org>

Dominique Quatravaux <domq@cpan.org>

LICENSE

Copyright (c) 2009 by Nick Cleaton and Dominique Quatravaux

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.1 or, at your option, any later version of Perl 5 you may have available.