File Coverage

blib/lib/Pootle/Resource.pm
Criterion Covered Total %
statement 24 24 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 32 32 100.0


line stmt bran cond sub pod time code
1             # Copyright (C) 2017 Koha-Suomi
2             #
3             # This file is part of Pootle-Client.
4              
5             package Pootle::Resource;
6              
7 1     1   6 use Modern::Perl '2015';
  1         1  
  1         5  
8 1     1   89 use utf8;
  1         1  
  1         4  
9 1     1   4 binmode STDOUT, ':encoding(UTF-8)';
  1         2  
  1         5  
10             binmode STDERR, ':encoding(UTF-8)';
11 1     1   30 use feature 'signatures'; no warnings "experimental::signatures";
  1     1   1  
  1         21  
  1         4  
  1         1  
  1         29  
12 1     1   5 use Carp::Always;
  1         1  
  1         14  
13 1     1   6 use Try::Tiny;
  1         2  
  1         40  
14 1     1   5 use Scalar::Util qw(blessed);
  1         2  
  1         39  
15              
16             =head2 Pootle::Resource
17              
18             Parent class of Pootle::Resource::*
19              
20             =cut
21              
22             1;