File Coverage

blib/lib/Games/Word/Wordlist/KBBI.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Games::Word::Wordlist::KBBI;
2              
3             our $DATE = '2016-01-13'; # DATE
4             our $VERSION = '0.02'; # VERSION
5              
6 1     1   748 use 5.010001;
  1         3  
7 1     1   4 use strict;
  1         2  
  1         19  
8 1     1   4 use warnings;
  1         2  
  1         25  
9              
10 1     1   727 use parent qw(Games::Word::Wordlist);
  1         338  
  1         7  
11 1     1   50682 use WordList::ID::KBBI;
  1         1519  
  1         61  
12              
13             sub new {
14 1     1 1 27 bless Games::Word::Wordlist->new ([WordList::ID::KBBI->new->all_words]), shift;
15             }
16              
17             1;
18              
19             # ABSTRACT: Wordlist from Kamus Besar Bahasa Indonesia (Indonesian)
20              
21              
22              
23             __END__