Sha256: e9c6f164be4f56f155025d249076daf61f58fc938a182e74a9ddcaf787426ea4

Contents?: true

Size: 1.59 KB

Versions: 73

Compression:

Stored size: 1.59 KB

Contents

#!/usr/bin/env perl
use strict;
use warnings;
use open ':std', ':encoding(utf8)';
use utf8;

use Test::More;
use FindBin;
my $dir;
BEGIN { $dir = $FindBin::Bin . '/' };
use lib $dir;

my $module = 'Phrase';

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 "${dir}${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

73 entries across 73 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.138 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.137 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.136 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.135 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.134 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.133 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.132 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.131 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.130 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.129 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.128 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.127 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.126 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.125 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.124 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.123 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.122 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.121 tracks/perl5/exercises/word-count/word_count.t
trackler-2.2.1.120 tracks/perl5/exercises/word-count/word_count.t