NAME

Mojolicious::Plugin::Prove - run test scripts via browser

VERSION

version 0.11

SYNOPSIS

# Mojolicious::Lite
plugin 'Prove' => {
    tests => {
        my_tests => '/path/to/test/files.t',
    },
};

# Mojolicious
$app->plugin( 'Prove' => {
    tests => {
        my_tests => '/path/to/test/files.t',
    },
});

# Access
http://localhost:3000/prove

# Prefix
plugin 'Prove' => {
    tests => {
        my_tests => '/path/to/test/files.t',
    },
    prefix => 'tests',
};

AUTHOR

Renee Baecker <reneeb@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2015 by Renee Baecker.

This is free software, licensed under:

The Artistic License 2.0 (GPL Compatible)