blib/lib/Filesys/Statvfs.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 Filesys::Statvfs; | ||||||
2 | |||||||
3 | 1 | 1 | 1039 | use strict; | |||
1 | 3 | ||||||
1 | 48 | ||||||
4 | 1 | 1 | 6 | use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); | |||
1 | 2 | ||||||
1 | 151 | ||||||
5 | |||||||
6 | require Exporter; | ||||||
7 | require DynaLoader; | ||||||
8 | |||||||
9 | @ISA = qw(Exporter DynaLoader); | ||||||
10 | @EXPORT = qw(statvfs fstatvfs); | ||||||
11 | $VERSION = '0.82'; | ||||||
12 | bootstrap Filesys::Statvfs $VERSION; | ||||||
13 | |||||||
14 | 1; | ||||||
15 | __END__ |