The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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.