| minismokebox documentation | Contained in the minismokebox distribution. |
POE::Component::SmokeBox::Backend::Test::SmokeBox::Mini - a backend to App::SmokeBox::Mini.
POE::Component::SmokeBox::Backend::Test::SmokeBox::Mini is a POE::Component::SmokeBox::Backend plugin used during the App::SmokeBox::Mini tests.
It contains no moving parts.
Chris BinGOs Williams
Copyright (c) Chris Williams.
This module may be used, modified, and distributed under the same terms as Perl itself. Please see the license that came with your Perl distribution for details.
| minismokebox documentation | Contained in the minismokebox distribution. |
package POE::Component::SmokeBox::Backend::Test::SmokeBox::Mini; use strict; use warnings; use base qw(POE::Component::SmokeBox::Backend::Base); use vars qw($VERSION); $VERSION = '0.54'; sub _data { my $self = shift; $self->{_data} = { check => [ '-e', 1 ], index => [ '-e', 1 ], smoke => [ '-e', '$|=1; if ( $ENV{PERL5LIB} ) { require App::SmokeBox::Mini::Plugin::Test; } else { my $module = shift; print $module, qq{\n}; } sleep 5; exit 0;' ], }; return; } 1; __END__