POE::Component::SmokeBox::Backend::Test::SmokeBox::Mini - a backend to App::SmokeBox::Mini.


minismokebox documentation Contained in the minismokebox distribution.

Index


Code Index:

NAME

Top

POE::Component::SmokeBox::Backend::Test::SmokeBox::Mini - a backend to App::SmokeBox::Mini.

DESCRIPTION

Top

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.

AUTHOR

Top

Chris BinGOs Williams

LICENSE

Top

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.

SEE ALSO

Top

POE::Component::SmokeBox::Backend


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__