File Coverage

blib/lib/Fierce/Parser/Node.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             # $Id: Node.pm 291 2009-11-15 22:05:38Z jabra $
2             package Fierce::Parser::Node;
3             {
4             our $VERSION = '0.01';
5             $VERSION = eval $VERSION;
6              
7 1     1   2653 use Object::InsideOut;
  1         3  
  1         8  
8             my @ip : Field : Arg(ip) : Get(ip);
9             my @hostname : Field : Arg(hostname) : Get(hostname);
10             my @type : Field : Arg(type) : Get(type);
11             my @ttl : Field : Arg(ttl) : Get(ttl);
12             my @from : Field : Arg(from) : Get(from);
13             }
14             1;