use strict;
use warnings;
-use Test::More tests => 21;
+use Test::More tests => 27;
BEGIN {
- use_ok('MooseX::AttributeHelpers');
+ use_ok('MooseX::AttributeHelpers');
}
{
chop => 'chop_string',
chomp => 'chomp_string',
clear => 'clear_string',
+ substr => 'sub_string',
},
curries => {
append => {exclaim => [ '!' ]},
replace => {capitalize_last => [ qr/(.)$/, sub { uc $1 } ]},
- match => {invalid_number => [ qr/\D/ ]}
+ match => {invalid_number => [ qr/\D/ ]},
+ substr => {shift_chars => sub { $_[1]->($_[0], 0, $_[2], '') } },
}
);
}
$page->exclaim;
is($page->string, 'bArcfo!', 'exclaim!');
+is($page->sub_string(2), 'rcfo!', 'substr(offset)');
+is($page->sub_string(2, 2), 'rc', 'substr(offset, length)');
+is($page->sub_string(2, 2, ''), 'rc', 'substr(offset, length, replacement)');
+is($page->string, 'bAfo!', 'replacement got inserted');
+
+is($page->shift_chars(2), 'bA', 'curried substr');
+is($page->string, 'fo!', 'replacement got inserted');
+
$page->string('Moosex');
$page->capitalize_last;
is($page->string, 'MooseX', 'capitalize last');
chop => 'chop_string',
chomp => 'chomp_string',
clear => 'clear_string',
+ substr => 'sub_string',
}, '... got the right provides methods');