File Coverage

blib/lib/Plack/VCR/Interaction.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             ## no critic (RequireUseStrict)
2             package Plack::VCR::Interaction;
3             $Plack::VCR::Interaction::VERSION = '0.05'; # TRIAL
4             ## use critic (RequireUseStrict)
5 11     11   39 use strict;
  11         11  
  11         294  
6 11     11   39 use warnings;
  11         13  
  11         239  
7              
8 11     11   33 use Plack::Util::Accessor qw/request/;
  11         12  
  11         122  
9              
10             sub new {
11 26     26 1 58 my ( $class, %opts ) = @_;
12              
13 26         104 return bless \%opts, $class;
14             }
15              
16             1;
17              
18             # ABSTRACT: Represents a single HTTP interaction
19              
20             __END__