File Coverage

blib/lib/SNA/Network/Node/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::Node::Plugin::Test;
2              
3 14     14   19582 use warnings;
  14         33  
  14         480  
4 14     14   58 use strict;
  14         16  
  14         458  
5              
6             require Exporter;
7 14     14   58 use base qw(Exporter);
  14         23  
  14         1870  
8             our @EXPORT = qw(node_plugin_test);
9              
10              
11             =head1 NAME
12              
13             SNA::Network::Node::Plugin::Test - Test plugin for SNA::Network::Node
14              
15              
16             =head1 METHODS
17              
18             =head2 node_plugin_test
19              
20             returns 1
21              
22             =cut
23              
24             sub node_plugin_test {
25 1     1 1 8 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