Require Dist::Zilla 4.200016+
[gitmo/Moose.git] / t / type_constraints / throw_error.t
CommitLineData
6ea98933 1use strict;
2use warnings;
3
a28e50e4 4use Test::More;
6ea98933 5
6use Moose::Util::TypeConstraints;
7
8
9eval { Moose::Util::TypeConstraints::create_type_constraint_union() };
10
11like( $@, qr/\QYou must pass in at least 2 type names to make a union/,
12 'can throw a proper error without Moose being loaded by the caller' );
a28e50e4 13
14done_testing;