Skip to content

zebardy/Test-Routini

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

Test::Routini - A simple test framework primarialy for Moo/Mouse/Moose which provides a slice of the functionality of Test::Routine without the complexity of Moose

SYNOPSIS

use Moo;
use Test::More;

use Test::Routini;

has foo => ( is => 'rw', default => sub { 'bar' } );

test "bob test" => sub {
    my $self = shift;
    print "running test\n";
    ok 1;
    is $self->foo, 'bar';
};

before run_test => sub {
    print "running before each test!\n";
};

run_me;
done_testing;
1;

DESCRIPTION

This module provides enough of the Test::Routine look and feel to make nice tests without the need for a MOP

AUTHOR

Aaron Moses <zebardy@gmail.com>

COPYRIGHT

Copyright 2013 Aaron Moses.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

About

A simple test framework for Moo which provides a slice of the functionality of Test::Routine without the complexity of Moose

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages