File Coverage

blib/lib/FusionInventory/Agent/Task/Inventory/Generic/Softwares.pm
Criterion Covered Total %
statement 6 9 66.6
branch n/a
condition n/a
subroutine 2 4 50.0
pod 0 2 0.0
total 8 15 53.3


line stmt bran cond sub pod time code
1             package FusionInventory::Agent::Task::Inventory::Generic::Softwares;
2              
3 1     1   95625924 use strict;
  1         13  
  1         134  
4 1     1   7 use warnings;
  1         2  
  1         142  
5              
6             sub isEnabled {
7 0     0 0   my (%params) = @_;
8              
9 0           return !$params{no_category}->{software};
10             }
11              
12 0     0 0   sub doInventory {}
13              
14             1;