1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
use Test::Base tests => 2;
my $b = next_block;
is $b->ok, "I am ok. Are you ok?";
$b = next_block;
is_deeply [$b->words], [qw(foo bar baz)];
__DATA__
=== Split a string of lines into words
--- ok split join=\s
I am
ok. Are you
ok?
=== Split on a string
--- words split=x: fooxbarxbaz
--- LAST
The other tests don't work yet.
===
--- ok lines split
I am
ok. Are you
ok?
===
--- test lines Split Reverse Join reverse join=\n
I Like Ike
Give Peace A Chance
Love Is The Answer
--- flip
Answer The Is Love
Chance A Peace Give
Ike Like I
|