File Coverage

blib/lib/FusionInventory/Agent/Task/Inventory/Linux/PowerPC.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 0 2 0.0
total 12 18 66.6


line stmt bran cond sub pod time code
1             package FusionInventory::Agent::Task::Inventory::Linux::PowerPC;
2              
3 1     1   36731874 use strict;
  1         13  
  1         116  
4 1     1   10 use warnings;
  1         2  
  1         87  
5              
6 1     1   7 use Config;
  1         48  
  1         299  
7              
8             sub isEnabled {
9 0     0 0   return $Config{archname} =~ /^(ppc|powerpc)/;
10             }
11              
12 0     0 0   sub doInventory {
13             }
14              
15             1;