File Coverage

blib/lib/Text/Editor/Vip.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1              
2             package Text::Editor::Vip;
3 4     4   166019 use strict;
  4         13  
  4         169  
4 4     4   22 use warnings ;
  4         12  
  4         152  
5              
6             BEGIN
7             {
8 4     4   23 use Exporter ();
  4         15  
  4         124  
9 4     4   25 use vars qw ($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
  4         9  
  4         1054  
10 4     4   9 $VERSION = '0.08';
11 4         71 @ISA = qw (Exporter);
12 4         8 @EXPORT = qw ();
13 4         9 @EXPORT_OK = qw ();
14 4         134 %EXPORT_TAGS = ();
15             }
16              
17              
18             =head1 NAME
19              
20             Text::Editor::Vip - Perl Editor
21              
22             =head1 DESCRIPTION
23              
24             See the README file.
25              
26             =head1 AUTHOR
27              
28             Nadim iibn Hamouda El Khemir
29            
30              
31             =head1 COPYRIGHT
32              
33             This program is free software; you can redistribute
34             it and/or modify it under the same terms as Perl itself.
35              
36             The full text of the license can be found in the
37             LICENSE file included with this module.
38              
39             =head1 SEE ALSO
40              
41             perl(1).
42              
43             =cut
44              
45             1 ;