File Coverage

blib/lib/SNA/Network/Plugin/Test.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             package SNA::Network::Plugin::Test;
2              
3 14     14   18144 use warnings;
  14         26  
  14         428  
4 14     14   59 use strict;
  14         19  
  14         454  
5              
6             require Exporter;
7 14     14   59 use base qw(Exporter);
  14         18  
  14         1564  
8             our @EXPORT = qw(network_plugin_test);
9              
10              
11             =head1 NAME
12              
13             SNA::Network::Plugin::Test - Test plugin for SNA::Network
14              
15              
16             =head1 METHODS
17              
18             =head2 network_plugin_test
19              
20             returns 1
21              
22             =cut
23              
24             sub network_plugin_test {
25 1     1 1 10 return 1;
26             }
27              
28              
29             =head1 AUTHOR
30              
31             Darko Obradovic, C<< >>
32              
33              
34             =head1 COPYRIGHT & LICENSE
35              
36             Copyright 2009 Darko Obradovic, all rights reserved.
37              
38             This program is free software; you can redistribute it and/or modify it
39             under the same terms as Perl itself.
40              
41             =cut
42              
43             1;
44