forked from mojolicious/mojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignatures.t
34 lines (23 loc) · 795 Bytes
/
signatures.t
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
use Mojo::Base -strict;
use Test::More;
BEGIN { plan skip_all => 'Perl 5.20+ required for this test!' if $] < 5.020 }
package MojoSignatureBaseTest;
use Mojo::Base -base, -signatures;
sub foo ($self, $bar, $baz) { $bar + $baz }
package MojoSignatureBaseTest2;
use Mojo::Base -signatures, -base, -strict;
sub foo ($self, $bar, $baz) { $bar - $baz }
package main;
subtest 'Basics' => sub {
my $test = MojoSignatureBaseTest->new;
is($test->foo(23, 24), 47, 'right result');
};
subtest 'Random order flags' => sub {
my $test2 = MojoSignatureBaseTest2->new;
is($test2->foo(26, 24), 2, 'right result');
};
subtest 'Bad flag' => sub {
eval "package MojoSignaturesTest3; use Mojo::Base -unsupported";
like $@, qr/Unsupported flag: -unsupported/, 'right error';
};
done_testing();