Sha256: 384504f283b39676fa630d17ffd2ab0e99198578eb2d53389cb00314068f2313

Contents?: true

Size: 1.2 KB

Versions: 303

Compression:

Stored size: 1.2 KB

Contents

#!/usr/bin/env perl
use strict;
use warnings;

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

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

plan tests => 11;

ok -e "${dir}${module}.pm", "Missing $module.pm" or BAIL_OUT "You need to create the file: $module.pm";
eval "use $module";
ok !$@, "Cannot load $module" or BAIL_OUT "Cannot load $module. Does it compile? Does it end with 1;?";
can_ok $module, "new"     or BAIL_OUT "Missing package $module; or missing sub new()";
can_ok $module, "rows"    or BAIL_OUT "Missing package $module; or missing sub rows()";
can_ok $module, "columns" or BAIL_OUT "Missing package $module; or missing sub columns()";

is_deeply $module->new("1 2\n10 20")->rows(0), [1, 2], "extract a row";
is_deeply $module->new("9 7\n8 6")->rows(0), [9, 7], "extract another row";
is_deeply $module->new("9 8 7\n19 18 17")->rows(1), [19, 18, 17], "extract 2nd row";
is_deeply $module->new("1 4 9\n16 25 36")->rows(1), [16, 25, 36], "extract 2nd row";
is_deeply $module->new("1 2 3\n4 5 6\n7 8 9\n8 7 6")->columns(0), [1, 4, 7, 8], "extract a column";
is_deeply $module->new("89 1903 3\n18 3 1\n9 4 800")->columns(1), [1903, 3, 4], "extract another column";

Version data entries

303 entries across 303 versions & 1 rubygems

Version Path
trackler-2.2.1.85 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.84 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.83 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.82 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.81 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.80 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.79 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.78 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.77 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.76 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.75 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.74 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.73 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.72 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.71 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.70 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.69 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.68 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.67 tracks/perl5/exercises/matrix/matrix.t
trackler-2.2.1.66 tracks/perl5/exercises/matrix/matrix.t