File Coverage

blib/lib/Metabrik/File/Psv.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 15 86.6


line stmt bran cond sub pod time code
1             #
2             # $Id$
3             #
4             # file::psv Brik
5             #
6             package Metabrik::File::Psv;
7 1     1   803 use strict;
  1         2  
  1         30  
8 1     1   5 use warnings;
  1         2  
  1         26  
9              
10 1     1   6 use base qw(Metabrik::File::Csv);
  1         2  
  1         154  
11              
12             sub brik_properties {
13             return {
14 0     0 1   revision => '$Revision$',
15             tags => [ qw(unstable) ],
16             author => 'GomoR ',
17             license => 'http://opensource.org/licenses/BSD-3-Clause',
18             attributes_default => {
19             separator => "|",
20             },
21             };
22             }
23              
24             1;
25              
26             __END__