Sha256: 0156ddf1235fe388ab85d0dc63ac48264e144fe99b6b4f49675e99bcf1acade6

Contents?: true

Size: 1.52 KB

Versions: 20

Compression:

Stored size: 1.52 KB

Contents

use strict;
use warnings;
use open ':std', ':encoding(utf8)';
use utf8;

my $module = $ENV{EXERCISM} ? 'Example' : 'Phrase';

use Test::More;

my @cases = (
    # input                                       expected output                  title
    ['word',                                      {word =>  1},                    'one word'],
    ['one of each',                               {one => 1, of => 1, each => 1},  'one of each'],
    ['one fish two fish red fish blue fish',
            {one => 1, fish => 4, two => 1, red => 1, blue => 1},
                 'multiple occurences'],
    ['car : carpet as java : javascript!!&@$%^&',
            {car => 1, carpet => 1, as => 1, java => 1, javascript => 1},
                'ignore punctuation'],
    ['testing, 1, 2 testing',                     {testing => 2, 1 => 1, 2 => 1}, 'include numbers'],
    ['go Go GO',                                  {go => 3},                       'normalize case'],
);


plan tests => 3 + @cases;

ok -e "$module.pm", "missing $module.pm"
    or BAIL_OUT("You need to create a module called $module.pm with a function called word_count() that gets one parameter: the text in which to count the words.");

eval "use $module";
ok !$@, "Cannot load $module.pm"
    or BAIL_OUT("Does $module.pm compile?  Does it end with 1; ?");

can_ok($module, 'word_count') or BAIL_OUT("Missing package Phrase; or missing sub word_count()");

my $sub = $module . '::word_count';

foreach my $c (@cases) {
    no strict 'refs';
    is_deeply $sub->($c->[0]), $c->[1], $c->[2];
}


Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
trackler-2.0.0.9 tracks/perl5/word-count/word_count.t
trackler-2.0.0.8 tracks/perl5/word-count/word_count.t
trackler-2.0.0.7 tracks/perl5/word-count/word_count.t
trackler-2.0.0.6 tracks/perl5/word-count/word_count.t
trackler-2.0.0.5 tracks/perl5/word-count/word_count.t
trackler-2.0.0.4 tracks/perl5/word-count/word_count.t
trackler-2.0.0.3 tracks/perl5/word-count/word_count.t
trackler-2.0.0.2 tracks/perl5/word-count/word_count.t
trackler-2.0.0.1 tracks/perl5/word-count/word_count.t
trackler-2.0.0.0 tracks/perl5/word-count/word_count.t
trackler-1.0.4.1 tracks/perl5/word-count/word_count.t
trackler-1.0.4.0 tracks/perl5/word-count/word_count.t
trackler-1.0.3.0 tracks/perl5/word-count/word_count.t
trackler-1.0.2.1 tracks/perl5/word-count/word_count.t
trackler-1.0.2.0 tracks/perl5/word-count/word_count.t
trackler-1.0.1.2 tracks/perl5/word-count/word_count.t
trackler-1.0.1.1 tracks/perl5/word-count/word_count.t
trackler-1.0.1.0 tracks/perl5/word-count/word_count.t
trackler-1.0.0.1 tracks/perl5/word-count/word_count.t
trackler-1.0.0 tracks/perl5/word-count/word_count.t