Skip to content

Commit

Permalink
Merge pull request #1 from skington/master
Browse files Browse the repository at this point in the history
Documentation tweak
  • Loading branch information
Ovid committed Nov 19, 2012
2 parents 6730481 + bfed7de commit 424619b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/Test/Class.pm
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,15 @@ Just like setup and teardown methods you can pass an optional number of tests to
sub example : Test(startup => 1) {
ok(1, 'a startup method with one test');
};
If you want to run an unknown number of tests within your startup method, you need to say e.g.
sub example : Test(startup => no_plan) {
ok(1, q{The first of many tests that don't want to have to count});
...
}
as the : Tests attribute behaves exactly like : Test in this context.
If a startup method has a failing test or throws an exception then all other tests for the current test object are ignored.
Expand Down

0 comments on commit 424619b

Please sign in to comment.