From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314 use Test2::V0;is( [<DATA>], ["foo\n", "bar\n", "baz\n"], "Got correct data section");done_testing;__DATA__foobarbaz
use
Test2::V0;
is(
[<DATA>],
[
"foo\n"
,
"bar\n"
"baz\n"
],
"Got correct data section"
);
done_testing;
__DATA__
foo
bar
baz