NAME
Test::Stream::Bundle::Tester - Bundle for testing test tools.
EXPERIMENTAL CODE WARNING
This is an experimental release! Test-Stream, and all its components are still in an experimental phase. This dist has been released to cpan in order to allow testers and early adopters the chance to write experimental new tools with it, or to add experimental support for it into old tools.
PLEASE DO NOT COMPLETELY CONVERT OLD TOOLS YET. This experimental release is very likely to see a lot of code churn. API's may break at any time. Test-Stream should NOT be depended on by any toolchain level tools until the experimental phase is over.
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 -V1, -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
AUTHORS
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://www.perl.com/perl/misc/Artistic.html