ok True, 'True is, well, True'; if True { pass('if True works'); } else { flunk('if True works'); } #### sub s { my $str = shift; return split /:/, $str; } #### is_deeply [s("a:b")], [split /:/, 'a:b'], $msg; #### is_deeply [s("a:b")], [qw(a, b)], $msg;
## sub s { my $str = shift; return split /:/, $str; } ##
## is_deeply [s("a:b")], [split /:/, 'a:b'], $msg; ##
## is_deeply [s("a:b")], [qw(a, b)], $msg;