File Coverage

blib/lib/Dirbuster/Parser/Result.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: Host.pm 18 2008-05-05 23:55:18Z jabra $
2             package Dirbuster::Parser::Result;
3             {
4             our $VERSION = '0.01';
5             $VERSION = eval $VERSION;
6              
7 1     1   1478 use Object::InsideOut;
  1         2  
  1         7  
8              
9             my @path : Field : Arg(path) : Get(path);
10             my @response_code : Field : Arg(response_code) : Get(response_code);
11             my @type : Field : Arg(type) : Get(type);
12             }
13             1;