line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
## no critic (RequireUseStrict) |
2
|
|
|
|
|
|
|
package Plack::VCR::Interaction; |
3
|
|
|
|
|
|
|
$Plack::VCR::Interaction::VERSION = '0.06'; |
4
|
|
|
|
|
|
|
## use critic (RequireUseStrict) |
5
|
11
|
|
|
11
|
|
67
|
use strict; |
|
11
|
|
|
|
|
22
|
|
|
11
|
|
|
|
|
438
|
|
6
|
11
|
|
|
11
|
|
73
|
use warnings; |
|
11
|
|
|
|
|
22
|
|
|
11
|
|
|
|
|
545
|
|
7
|
|
|
|
|
|
|
|
8
|
11
|
|
|
11
|
|
70
|
use Plack::Util::Accessor qw/request/; |
|
11
|
|
|
|
|
19
|
|
|
11
|
|
|
|
|
259
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
sub new { |
11
|
26
|
|
|
26
|
1
|
84
|
my ( $class, %opts ) = @_; |
12
|
|
|
|
|
|
|
|
13
|
26
|
|
|
|
|
125
|
return bless \%opts, $class; |
14
|
|
|
|
|
|
|
} |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
# ABSTRACT: Represents a single HTTP interaction |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |