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 19     19   348 use 5.010000;
  19         61  
6              
7             our $VERSION = '0.98';
8              
9 19     19   97 use Moose 2.0000;
  19         269  
  19         138  
10 19     19   117286 use Carp;
  19         44  
  19         1133  
11 19     19   104 use namespace::autoclean;
  19         37  
  19         140  
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.98
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