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

NAME

Test::Stream::Plugin::LoadPlugin - Load a plugin with full Test::Stream semantics, but at runtime.

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

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

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://www.perl.com/perl/misc/Artistic.html