logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Test2::Event::Plan - The event of a plan

Accessors

       $num = $plan->max
           Get the number of expected tests

       $dir = $plan->directive
           Get the directive (such as TODO, skip_all, or no_plan).

       $reason = $plan->reason
           Get the reason for the directive.

Authors

       Chad Granum <exodist@cpan.org>

Description

       Plan events are fired off whenever a plan is declared, done testing is called, or a subtext completes.

Maintainers

       Chad Granum <exodist@cpan.org>

Name

       Test2::Event::Plan - The event of a plan

Source

       The source code repository for Test2 can be found at <https://github.com/Test-More/test-more/>.

Synopsis

           use Test2::API qw/context/;
           use Test2::Event::Plan;

           my $ctx = context();

           # Plan for 10 tests to run
           my $event = $ctx->plan(10);

           # Plan to skip all tests (will exit 0)
           $ctx->plan(0, skip_all => "These tests need to be skipped");

See Also