File Coverage

blib/lib/Regexp/Common/Email/Address.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Regexp::Common::Email::Address;
2             # $Id: Address.pm,v 1.1 2005/01/06 16:10:10 cwest Exp $
3 1     1   26428 use strict;
  1         2  
  1         38  
4              
5 1     1   4 use vars qw[$VERSION];
  1         2  
  1         75  
6             $VERSION = sprintf "%d.%02d", split m/\./, (qw$Revision: 1.1 $)[1];
7              
8 1     1   5 use Regexp::Common qw[pattern];
  1         5  
  1         20  
9 1     1   83134 use Email::Address;
  1         35291  
  1         127  
10              
11             pattern name => [qw[Email Address]],
12             create => qq[(?k:$Email::Address::mailbox)];
13              
14             1;
15              
16             __END__