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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
=pod
=encoding utf-8
=head1 PURPOSE
Create named functions with C<fun>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2013-2014, 2017 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use Test::More;
use Test::Fatal;
{
package Example;
use Kavorka;
method foo {
return { '$self' => $self, '@_' => \@_ };
}
method bar () {
return { '$self' => $self, '@_' => \@_ };
}
method Example2::baz ($x, $y) {
return { '$self' => $self, '@_' => \@_, '$x' => \$x, '$y' => \$y };
}
method ::quux ($x, $y, ...) {
return { '$self' => $self, '@_' => \@_, '$x' => \$x, '$y' => \$y };
}
method my $xyzzy ($x) {
return { '$self' => $self, '$x' => \$x };
}
method XYZZY ($x) {
return $self->$xyzzy($x);
}
}
is_deeply(
Example->foo(),
{ '$self' => 'Example', '@_' => [] },
'named method with no signature; called with empty list',
);
is_deeply(
Example->foo(1..4),
{ '$self' => 'Example', '@_' => [1..4] },
'named method with no signature; called with arguments',
);
is_deeply(
Example->bar(),
{ '$self' => 'Example', '@_' => [] },
'named method with empty signature',
);
#line 68
like(
exception { Example->bar(1..4) },
qr{\AExpected 0 parameters at \S+ line 69},
'named method with empty signature throws exception if passed arguments',
);
is_deeply(
Example2->baz(1..2),
{ '$self' => 'Example2', '@_' => [1..2], '$x' => \1, '$y' => \2 },
'named method with positional parameters',
);
#line 81
like(
exception { Example2->baz(1..4) },
qr{\AExpected 2 parameters at \S+ line 82},
'named method with positional parameters throws exception if passed too many arguments',
);
#line 88
like(
exception { Example2->baz(1) },
qr{\AExpected 2 parameters at \S+ line 89},
'named method with positional parameters throws exception if passed too few arguments',
);
#line 95
is(
exception { Example2->baz(undef, undef) },
undef,
'an explicit undef satisfies positional parameters',
);
is_deeply(
main->quux(1..2),
{ '$self' => 'main', '@_' => [1..2], '$x' => \1, '$y' => \2 },
'named method with positional parameters and yadayada',
);
#line 108
is(
exception { main->quux(1..4) },
undef,
'named method with positional parameters and yadayada throws no exception if passed too many arguments',
);
#line 115
like(
exception { main->quux(1) },
qr{\AExpected at least 2 parameters at \S+ line 116},
'named method with positional parameters and yadayada throws exception if passed too few arguments',
);
#line 121
is(
exception { main->quux(undef, undef) },
undef,
'an explicit undef satisfies positional parameters with yadayada',
);
is_deeply(
Example->XYZZY(42),
{ '$self' => 'Example', '$x' => \42 },
'lexical methods',
);
{ package Example3; use Kavorka; method xxx { } };
is_deeply(
[ Example3->xxx(1..3) ],
[],
'an empty method body returns nothing',
);
{
package Example4;
use Kavorka;
use namespace::sweep;
method method { 42 }
}
is_deeply(
Example4->method,
42,
'can define a method called "method"',
);
done_testing;
|