line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
2659
|
use 5.008; |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
51
|
|
2
|
1
|
|
|
1
|
|
8
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
36
|
|
3
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
79
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Data::Conveyor::Charset::ViaHash::LatinSmallLetters_TEST; |
6
|
|
|
|
|
|
|
BEGIN { |
7
|
1
|
|
|
1
|
|
20
|
$Data::Conveyor::Charset::ViaHash::LatinSmallLetters_TEST::VERSION = '1.103130'; |
8
|
|
|
|
|
|
|
} |
9
|
|
|
|
|
|
|
# ABSTRACT: Stage-based conveyor-belt-like ticket handling system |
10
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
6
|
use Test::More; |
|
1
|
|
|
|
|
14
|
|
|
1
|
|
|
|
|
11
|
|
12
|
1
|
|
|
1
|
|
391
|
use parent 'Data::Conveyor::Test'; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
13
|
1
|
|
|
1
|
|
107
|
use constant PLAN => 1; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
179
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub run { |
16
|
1
|
|
|
1
|
1
|
3464
|
my $self = shift; |
17
|
1
|
|
|
|
|
12
|
$self->SUPER::run(@_); |
18
|
1
|
|
|
|
|
628
|
my $o1 = $self->make_real_object; |
19
|
1
|
|
|
|
|
2064
|
my $c1 = $o1->get_characters; |
20
|
1
|
|
|
|
|
45
|
my $o2 = $self->make_real_object; |
21
|
1
|
|
|
|
|
128
|
my $c2 = $o2->get_characters; |
22
|
1
|
|
|
|
|
15
|
is_deeply($c1, $c2, 'characters() returns the same structure twice'); |
23
|
|
|
|
|
|
|
} |
24
|
|
|
|
|
|
|
1; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
__END__ |