Lines Matching full:simple
1 package Test::Simple;
17 Test::Simple - Basic utilities for writing tests.
21 use Test::Simple tests => 1;
30 This is an extremely simple, extremely basic module for writing tests
44 use Test::Simple tests => 23;
84 Test::Simple will start by printing number of tests run in the form
89 If all your tests passed, Test::Simple will exit with zero (which is
92 will be considered failures. If no tests were ever run Test::Simple
112 Here's an example of a simple .t file for the fictional Film module.
114 use Test::Simple tests => 5;
147 Test::Simple will only report a maximum of 254 failures in its exit
164 Test::Simple is B<explicitly> tested all the way back to perl 5.6.0.
166 Test::Simple is thread-safe in perl 5.8.1 and up.
174 to write tests B<at all>. What was needed was a dead simple module
186 More testing functions! Once you outgrow Test::Simple, look at
187 L<Test::More>. Test::Simple is 100% forward compatible with L<Test::More>
188 (i.e. you can just use L<Test::More> instead of Test::Simple in your