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

NAME

Test::Stream::Bundle::Tester - Bundle for testing test tools.

DEPRECATED

This distribution is deprecated in favor of Test2, Test2::Suite, and Test2::Workflow.

See Test::Stream::Manual::ToTest2 for a conversion guide.

DESCRIPTION

Plugins that are useful when testing test tools and plugins. This includes tools for intercepting and validating events, as well as all the exports provided by the Compare plugin.

SYNOPSIS

    use Test::Stream Core, -Tester;

    is(
        intercept { ok(1, "pass") },
        array {
            event Ok => sub {
                call pass => T();
                call name => 'pass';
            };
            end;
        },
        "Intercepted an event"
    );

    done_testing;

INCLUDED PLUGINS AND BUNDLES

Test::Stream::Plugin::Compare

Unlike the default bundle, every tool exported by the Compare plugin is imported.

Test::Stream::Plugin::Intercept

Provides the intercept { ... } function, this is used to intercept events.

Test::Stream::Plugin::Grab

An alternative way to intercept events, this one does not add stack frames.

Test::Stream::Plugin::LoadPlugin

Allows you to dynamically load plugins as needed.

Test::Stream::Plugin::Context

Provides the context() function.

SOURCE

The source code repository for Test::Stream can be found at http://github.com/Test-More/Test-Stream/.

MAINTAINERS

Chad Granum <exodist@cpan.org>

AUTHORS

Chad Granum <exodist@cpan.org>

COPYRIGHT

Copyright 2015 Chad Granum <exodist7@gmail.com>.

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

See http://dev.perl.org/licenses/