—=pod
=encoding utf-8
=head1 PURPOSE
Tests L<Types::Common> cannot be added to!
=head1 AUTHOR
Toby Inkster.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2022-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
Test::More;
use
Test::Fatal;
use
Types::Common;
my
$e
= exception {
Types::Common->add_type( {
name
=>
'Boomerang'
} );
};
like
$e
,
qr/Type library is immutable/
;
done_testing;