File Coverage

blib/lib/SNMP/Insight/Meta/Class/Trait/MIB.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package SNMP::Insight::Meta::Class::Trait::MIB;
2              
3             #ABSTRACT: meta class trait for MIBs roles
4              
5 6     6   27198 use Moose::Role;
  6         384446  
  6         35  
6              
7             our $VERSION = '0.002'; #TRIAL VERSION:
8              
9             Moose::Util::meta_class_alias('MIB');
10              
11             has mib_name => (
12             is => 'rw',
13             isa => 'Str',
14             );
15              
16             has mib_oid => (
17             is => 'rw',
18             isa => 'Str',
19             );
20              
21             1;
22              
23             # Local Variables:
24             # mode: cperl
25             # indent-tabs-mode: nil
26             # cperl-indent-level: 4
27             # cperl-indent-parens-as-block: t
28             # End:
29              
30             __END__
31              
32             =pod
33              
34             =head1 NAME
35              
36             SNMP::Insight::Meta::Class::Trait::MIB - meta class trait for MIBs roles
37              
38             =head1 VERSION
39              
40             version 0.002
41              
42             =head1 AUTHOR
43              
44             Gabriele Mambrini <g.mambrini@gmail.com>
45              
46             =head1 COPYRIGHT AND LICENSE
47              
48             This software is copyright (c) 2015 by Gabriele Mambrini.
49              
50             This is free software; you can redistribute it and/or modify it under
51             the same terms as the Perl 5 programming language system itself.
52              
53             =cut