NAME

Test::Suite::Plugin::More - Wrapper around Test::More for Test::Suite

DESCRIPTION

Wraps all the testers from Test::More for use in Test::Suite. Also provides diag() and a new todo() function.

EARLY VERSION WARNING

This is VERY early version. Test::Suite does not run yet.

Please go to http://github.com/exodist/Test-Suite to see the latest and greatest.

TESTER FUNCTIONS

Please see Test::More for more details on any of these.

is()
isnt()
like()
unlike()
cmp_ok()
is_deeply()
can_ok()
isa_ok()

UTILITY FUNCTIONS

diag( @messages )

Display a message in the test output.

todo( $sub, $reason )

Run a group of tests under TODO.

todo {
    ok( 0, "Will fail" );
    is( 1, 2, "1 != 2" );
} "These fail";

AUTHORS

Chad Granum exodist7@gmail.com

COPYRIGHT

Copyright (C) 2010 Chad Granum

Test-Suite is free software; Standard perl licence.

Test-Suite is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license for more details.