The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

=pod
=encoding utf-8
=head1 PURPOSE
Checks Type::Tiny works with the smartmatch operator.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2014, 2017-2025 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 lib qw( ./lib ./t/lib ../inc ./inc );
use Type::Tiny ();
BEGIN {
Type::Tiny::SUPPORT_SMARTMATCH
or plan skip_all => 'smartmatch support not available for this version or Perl';
}
use Types::Standard -all;
no warnings; # !!
ok( 42 ~~ Int );
ok( 42 ~~ Num );
ok not( 42 ~~ ArrayRef );
ok( 42 ~~ \&is_Int );
ok not( 42 ~~ \&is_ArrayRef );
TODO: {
use feature qw(switch);
given (4) {
when ( \&is_RegexpRef ) { fail('regexpref') }
when ( \&is_Int ) { pass('int') }
default { fail('default') }
}
local $TODO = 'this would be nice, but probably requires changes to perl';
given (4) {
when ( RegexpRef ) { fail('regexpref') }
when ( Int ) { pass('int') }
default { fail('default') }
}
};
done_testing;