File Coverage

blib/lib/Net/Twitter/Types.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Net::Twitter::Types;
2             $Net::Twitter::Types::VERSION = '4.01042';
3 8     8   34 use Moose::Util::TypeConstraints;
  8         11  
  8         73  
4 8     8   8790 use URI;
  8         9  
  8         548  
5              
6             class_type 'Net::Twitter::Types::URI', { class => 'URI' };
7              
8             coerce 'Net::Twitter::Types::URI' => from 'Str' => via { URI->new($_) };
9              
10             1;
11              
12             __END__
13            
14             =pod
15            
16             =head1 NAME
17            
18             Net::Twitter::Types - types and coercions for Net::Twitter
19            
20             =head1 VERSION
21            
22             version 4.01042
23            
24             =cut
25