Dist::Zilla::Role::TestRunner - something used as a delegating agent to 'dzil test'


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

Index


Code Index:

NAME

Top

Dist::Zilla::Role::TestRunner - something used as a delegating agent to 'dzil test'

VERSION

Top

version 4.200008

DESCRIPTION

Top

Plugins implementing this role have their test method called when testing. It's passed the root directory of the build test dir.

METHODS

Top

test

This method should throw an exception on failure.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

package Dist::Zilla::Role::TestRunner;
BEGIN {
  $Dist::Zilla::Role::TestRunner::VERSION = '4.200008';
}
# ABSTRACT: something used as a delegating agent to 'dzil test'
use Moose::Role;
with 'Dist::Zilla::Role::Plugin';


requires 'test';

no Moose::Role;
1;

__END__