From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

=pod
=encoding utf-8
=head1 PURPOSE
Tests inheriting from a MooseX::Types library that uses
L<MooseX::Types::Parameterizable> and
L<MooseX::Meta::TypeCoercion::Parameterizable>.
=head1 SEE ALSO
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2019-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;
{ package Local::XYZ1; use Test::Requires 'MooseX::Types'; }
{ package Local::XYZ2; use Test::Requires 'MooseX::Types::DBIx::Class'; }
my $e = exception {
package MyApp::Types;
use Type::Library -base;
use Type::Utils 'extends';
};
is($e, undef);
done_testing;