File Coverage

blib/lib/Test/Class/Moose/Executor/Sequential.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Test::Class::Moose::Executor::Sequential;
2              
3             # ABSTRACT: Execute tests sequentially
4              
5 18     18   407 use 5.010000;
  18         62  
6              
7             our $VERSION = '0.97';
8              
9 18     18   100 use Moose 2.0000;
  18         258  
  18         138  
10 18     18   111828 use Carp;
  18         41  
  18         1089  
11 18     18   112 use namespace::autoclean;
  18         35  
  18         148  
12             with 'Test::Class::Moose::Role::Executor';
13              
14             __PACKAGE__->meta->make_immutable;
15              
16             1;
17              
18             __END__
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             Test::Class::Moose::Executor::Sequential - Execute tests sequentially
27              
28             =head1 VERSION
29              
30             version 0.97
31              
32             =for Pod::Coverage Tags Tests runtests
33              
34             =head1 SUPPORT
35              
36             Bugs may be submitted at L<https://github.com/houseabsolute/test-class-moose/issues>.
37              
38             I am also usually active on IRC as 'autarch' on C<irc://irc.perl.org>.
39              
40             =head1 SOURCE
41              
42             The source code repository for Test-Class-Moose can be found at L<https://github.com/houseabsolute/test-class-moose>.
43              
44             =head1 AUTHORS
45              
46             =over 4
47              
48             =item *
49              
50             Curtis "Ovid" Poe <ovid@cpan.org>
51              
52             =item *
53              
54             Dave Rolsky <autarch@urth.org>
55              
56             =back
57              
58             =head1 COPYRIGHT AND LICENSE
59              
60             This software is copyright (c) 2012 - 2019 by Curtis "Ovid" Poe.
61              
62             This is free software; you can redistribute it and/or modify it under
63             the same terms as the Perl 5 programming language system itself.
64              
65             The full text of the license can be found in the
66             F<LICENSE> file included with this distribution.
67              
68             =cut