File Coverage

blib/lib/SNMP/Insight/Device/NetSNMP.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package SNMP::Insight::Device::NetSNMP;
2              
3             #ABSTRACT: Support for Net-SNMP agent
4              
5 1     1   526 use Moose::Role;
  1         1  
  1         9  
6 1     1   4730 use namespace::autoclean;
  1         126  
  1         9  
7              
8             our $VERSION = '0.002'; #TRIAL VERSION:
9              
10             with
11             'SNMP::Insight::MIB::UCD',
12             'SNMP::Insight::MIB::IFMIB',
13             'SNMP::Insight::MIB::HostResources';
14              
15             1;
16              
17             # Local Variables:
18             # mode: cperl
19             # indent-tabs-mode: nil
20             # cperl-indent-level: 4
21             # cperl-indent-parens-as-block: t
22             # End:
23              
24             __END__
25              
26             =pod
27              
28             =head1 NAME
29              
30             SNMP::Insight::Device::NetSNMP - Support for Net-SNMP agent
31              
32             =head1 VERSION
33              
34             version 0.002
35              
36             =head1 AUTHOR
37              
38             Gabriele Mambrini <g.mambrini@gmail.com>
39              
40             =head1 COPYRIGHT AND LICENSE
41              
42             This software is copyright (c) 2015 by Gabriele Mambrini.
43              
44             This is free software; you can redistribute it and/or modify it under
45             the same terms as the Perl 5 programming language system itself.
46              
47             =cut