File: 30multi.t

package info (click to toggle)
libkavorka-perl 0.039-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 696 kB
  • sloc: perl: 2,850; makefile: 6; sh: 6
file content (84 lines) | stat: -rw-r--r-- 1,511 bytes parent folder | download
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
=pod

=encoding utf-8

=head1 PURPOSE

Test multi methods.

=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 qw( multi fun method );
	
	multi method foo (HashRef $x)
	{
		return 'HashRef';
	}
	
	multi method foo (ArrayRef $y)
	{
		return 'ArrayRef';
	}
	
	multi fun bar (HashRef $x)
	{
		return 'bar:HashRef';
	}
}

{
	package Example2;
	use Kavorka qw( multi fun method );
	
	BEGIN { our @ISA = qw(Example) };
	
	multi method foo (ScalarRef $z)
	{
		return 'ScalarRef';
	}
	
	multi fun bar (ScalarRef $z) :long(bar_sr)
	{
		return 'bar:ScalarRef';
	}
}

is( Example->foo({}), 'HashRef' );
is( Example->foo([]), 'ArrayRef' );
like(
	exception { Example->foo(\1) },
	qr{^Arguments to Example::foo did not match any known signature for multi sub},
);

is( Example2->foo({}), 'HashRef' );
is( Example2->foo([]), 'ArrayRef' );
is( Example2->foo(\1), 'ScalarRef' );

is( Example2::bar(\1), 'bar:ScalarRef' );
like(
	exception{ Example2::bar({}) },
	qr{^Arguments to Example2::bar did not match any known signature for multi sub},
	'bar is a function; should not inherit multis',
);

is( Example2::bar_sr(\1), 'bar:ScalarRef', 'can call function via long name' );

done_testing;