NAME
Test::Stream::Plugin::LoadPlugin - Load a plugin with full Test::Stream semantics, but at runtime.
DESCRIPTION
When testing plugins it can be useful to load them multiple times with different arguments. Doing this with use Test::Stream ...
isn't helpful as the use
statement makes it happen at BEGIN time. This module provides a run-time function you can use to load a plugin. The syntax is identical to the use statements, this is because it uses the same mechanism under the hood.
SYNOPSIS
use Test::Stream 'LoadPlugin';
# The following 2 are identical, except that the use statement happens at
# begin time, the load_plugin statement happens at run-time.
load_plugin Plugin => [qw/foo bar/];
use Test::Stream Plugin => [qw/foo bar/];
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