File Coverage

blib/lib/DateTime/Format/Human/Duration/Locale/fr.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 10 11 90.9


line stmt bran cond sub pod time code
1             package DateTime::Format::Human::Duration::Locale::fr;
2              
3 1     1   5 use strict;
  1         3  
  1         157  
4 1     1   7 use warnings;
  1         2  
  1         239  
5              
6             sub get_human_span_hashref {
7             return {
8 5     5 0 67 'no_oxford_comma' => 1,
9             'no_time' => 'pas le temps',
10             'and' => 'et',
11             'year' => 'an',
12             'years' => 'ans',
13             'month' => 'mois',
14             'months' => 'mois',
15             'week' => 'semaine',
16             'weeks' => 'semaines',
17             'day' => 'jour',
18             'days' => 'jours',
19             'hour' => 'heure',
20             'hours' => 'heures',
21             'minute' => 'minute',
22             'minutes' => 'minutes',
23             'second' => 'seconde',
24             'seconds' => 'seconds',
25             'nanosecond' => 'nanoseconde',
26             'nanoseconds' => 'nanosecondes',
27             };
28             }
29              
30             1;