Sha256: c1d753452e91c8d1a63e4a99655870943e925aab6fdc4d8da56146549ee03d85
Contents?: true
Size: 1.3 KB
Versions: 73
Compression:
Stored size: 1.3 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 @cases = ( { input => "1", expected => 1, }, { input => "10", expected => 2, }, { input => "11", expected => 3, }, { input => "100", expected => 4, }, { input => "1001", expected => 9, }, { input => "11010", expected => 26, }, { input => "10001101000", expected => 1128, }, { input => "carrot23", expected => 0, }, ); my $module = 'Binary'; plan tests => 4 + @cases; ok -e "${dir}${module}.pm", "Missing $module.pm", or BAIL_OUT "You need to create a file called $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, "to_decimal" or BAIL_OUT "Missing package $module; or missing sub to_decimal()"; foreach my $c ( @cases ) { my $binary = $module->new($c->{input}); is $binary->to_decimal, $c->{expected}, "Binary($c->{input}) to_decimal $c->{expected}"; }
Version data entries
73 entries across 73 versions & 1 rubygems