File Coverage

lib/SDL2/Locale.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 SDL2::Locale {
2 2     2   16 use SDL2::Utils;
  2         3  
  2         14  
3             has
4             language => 'opaque', # string
5             country => 'opaque'; # string
6              
7             =encoding utf-8
8              
9             =head1 NAME
10              
11             SDL2::Locale - Language and locality structure
12              
13             =head1 SYNOPSIS
14              
15             use SDL2 qw[:all];
16             # TODO: I need to whip up a quick example
17              
18             =head1 DESCRIPTION
19              
20              
21             =head1 Fields
22              
23             =over
24              
25             =item C - A language name, like "en" for English
26              
27             =item C - A country, like "US" for the United States of America. Can be NULL
28              
29             =back
30              
31             =head1 AUTHOR
32              
33             Sanko Robinson Esanko@cpan.orgE
34              
35             =begin stopwords
36              
37              
38             =end stopwords
39              
40             =cut
41              
42             };
43             1;