PITA::Test::Dummy::Perl5::Build - Brian, the CPAN Test Dummy for PITA Build.PL installs


PITA-Test-Dummy-Perl5-Build documentation Contained in the PITA-Test-Dummy-Perl5-Build distribution.

Index


Code Index:

NAME

Top

PITA::Test::Dummy::Perl5::Build - Brian, the CPAN Test Dummy for PITA Build.PL installs

SYNOPSIS

Top

    use PITA::Test::Dummy::Perl5::Build;

    my $name = PITA::Test::Dummy::Perl5::Build->dummy;

DESCRIPTION

Top

This module is part of the Perl Image Testing Architecture (PITA) and acts as a test module for the PITA::Scheme::Perl5::Build testing scheme.

1. Contains no functionality, and will never do so.

2. Has no non-core depencies, and will never have any.

3. Exists on CPAN.

METHODS

Top

dummy

Returns the dummy's name, in this case 'Brian'

AUTHOR

Top

Adam Kennedy <adamk@cpan.org>

SUPPORT

Top

No support is available for Brian.

Sigh... no his head was NOT meant to come off like that.

SEE ALSO

Top

PITA, PITA::Scheme::Perl5::Build

COPYRIGHT

Top


PITA-Test-Dummy-Perl5-Build documentation Contained in the PITA-Test-Dummy-Perl5-Build distribution.

package PITA::Test::Dummy::Perl5::Build;

use 5.004;
use strict;

use vars qw{$VERSION};
BEGIN {
	$VERSION = '1.04';
}

sub dummy { 'Brian' }

1;

__END__