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