File Coverage

blib/lib/VFS.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 VFS;
2              
3 1     1   23633 use strict;
  1         3  
  1         40  
4 1     1   6 use vars qw($VERSION);
  1         2  
  1         53  
5 1     1   505 use VFS::Filesystem;
  1         2  
  1         23  
6 1     1   5 use VFS::File;
  1         2  
  1         31  
7              
8             $VERSION = "0.01";
9              
10             =head1 NAME
11              
12             VFS - A virtual filesystem layer for Perl
13              
14             =head1 SYNOPSIS
15            
16             Unimplemented.
17              
18             =head1 DESCRIPTION
19              
20             An implementation of a virtual file system in Perl. It will allow
21             creation, reading and writing of files, mounting of systems in other
22             systems, ...
23              
24             =cut
25              
26             1;