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   28254 use warnings;
  14         34  
  14         491  
4 14     14   76 use strict;
  14         38  
  14         518  
5              
6             require Exporter;
7 14     14   74 use base qw(Exporter);
  14         27  
  14         2208  
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 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