Add the following packages libalgorithm-diff-perl libspiffy-perl libtext-diff-perl...
[pkg-perl] / deb-src / libtest-base-perl / libtest-base-perl-0.54 / t / prototypes.t
1 use Test::Base tests => 1;
2
3 is foo(), 'scalar_context', 'testing force scalar context';
4
5 sub foo {
6     wantarray ? 'list_context' : 'scalar_context';
7 }