| 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
|
|
140
|
use strict; |
|
|
19
|
|
|
|
|
43
|
|
|
|
19
|
|
|
|
|
837
|
|
|
6
|
19
|
|
|
19
|
|
98
|
use warnings; |
|
|
19
|
|
|
|
|
42
|
|
|
|
19
|
|
|
|
|
1302
|
|
|
7
|
19
|
|
|
19
|
|
136
|
use namespace::autoclean; |
|
|
19
|
|
|
|
|
40
|
|
|
|
19
|
|
|
|
|
186
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
19
|
|
|
19
|
|
2087
|
use 5.010000; |
|
|
19
|
|
|
|
|
78
|
|
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
our $VERSION = '1.00'; |
|
12
|
|
|
|
|
|
|
|
|
13
|
19
|
|
|
19
|
|
149
|
use Moose 2.0000; |
|
|
19
|
|
|
|
|
353
|
|
|
|
19
|
|
|
|
|
177
|
|
|
14
|
19
|
|
|
19
|
|
175245
|
use Carp; |
|
|
19
|
|
|
|
|
46
|
|
|
|
19
|
|
|
|
|
2653
|
|
|
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 1.00 |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=for Pod::Coverage Tags Tests runtests |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 SUPPORT |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Bugs may be submitted at L<https://github.com/Test-More/test-class-moose/issues>. |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 SOURCE |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
The source code repository for Test-Class-Moose can be found at L<https://github.com/Test-More/test-class-moose>. |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 AUTHORS |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=over 4 |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=item * |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Curtis "Ovid" Poe <ovid@cpan.org> |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=item * |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Dave Rolsky <autarch@urth.org> |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=item * |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Chad Granum <exodist@cpan.org> |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=back |
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
64
|
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
This software is copyright (c) 2012 - 2025 by Curtis "Ovid" Poe. |
|
66
|
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
|
68
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
|
69
|
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
The full text of the license can be found in the |
|
71
|
|
|
|
|
|
|
F<LICENSE> file included with this distribution. |
|
72
|
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=cut |