Skip to content

Commit

Permalink
Merge pull request #38 from bayashi/tiny-fix
Browse files Browse the repository at this point in the history
Tiny fix
  • Loading branch information
bayashi committed Feb 27, 2020
2 parents fcb54f8 + fe3fbb2 commit 53d50c8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
4 changes: 2 additions & 2 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
^\.git/
\.sw[po]$
^MYMETA\.*$
^Test-Arrow-*^MYMETA\.yml$
^MYMETA\.json$
^Test-Arrow-*
^MYMETA\.yml$
^MYMETA\.json$
20 changes: 8 additions & 12 deletions lib/Test/Arrow.pm
Original file line number Diff line number Diff line change
Expand Up @@ -512,8 +512,8 @@ Test::Arrow - Object-Oriented testing library
# matches '(?^:b)'
# matched at line: 1, offset: 2
$arr->throw(sub { die 'Baz' })->catch(qr/^Ba/);
$arr->warnings(sub { warn 'Bar' })->catch(qr/^Ba/);
$arr->throw(sub { die 'Baz' })->catch(qr/^Ba/);
=head1 DESCRIPTION
Expand Down Expand Up @@ -591,9 +591,9 @@ The test name is taken from the first line of each test.
=head2 TEST EXECUTERS
=head3 pass
=head3 pass($test_name)
=head3 fail
=head3 fail($test_name)
Just pass or fail
Expand Down Expand Up @@ -647,7 +647,7 @@ Checks to make sure the $class or $object can do these @methods
$arr->got($got_object)->expected($class)->isa_ok;
Checks to see if the given C<$got_object-&gt;isa($class)>. Also checks to make sure the object was defined in the first place.
Checks to see if the given C<$got_object-E<gt>isa($class)>. Also checks to make sure the object was defined in the first place.
It works on references, too:
Expand Down Expand Up @@ -749,17 +749,13 @@ B<Note> that you must never put C<done_testing> inside an C<END { ... }> block.
=head3 done
Alias of done_testing
Alias of C<done_testing>
=head2 CONSTANTS
=head3 PASS
1
=head3 FAIL
=head3 PASS = 1
0
=head3 FAIL = 0
=head1 REPOSITORY
Expand All @@ -786,7 +782,7 @@ L<Test::More>
L<Test::Kantan> - A behavior-driven development framework
L<Test::Builder::Module>
L<Test::Builder>
L<Test::Name::FromLine>
Expand Down

0 comments on commit 53d50c8

Please sign in to comment.