summaryrefslogtreecommitdiffstats
path: root/t/reinitialize.t
diff options
context:
space:
mode:
Diffstat (limited to 't/reinitialize.t')
-rw-r--r--t/reinitialize.t32
1 files changed, 32 insertions, 0 deletions
diff --git a/t/reinitialize.t b/t/reinitialize.t
new file mode 100644
index 0000000..5e4aa11
--- /dev/null
+++ b/t/reinitialize.t
@@ -0,0 +1,32 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use Test::Fatal;
+
+{
+ package Foo;
+ sub new { bless {}, shift }
+}
+
+{
+ package Foo::Meta::Role;
+ use Moose::Role;
+}
+
+{
+ package Foo::Sub;
+ use Moose;
+ use MooseX::NonMoose;
+ extends 'Foo';
+ Moose::Util::MetaRole::apply_metaroles(
+ for => __PACKAGE__,
+ class_metaroles => {
+ class => ['Foo::Meta::Role'],
+ },
+ );
+ ::is(::exception { __PACKAGE__->meta->make_immutable }, undef,
+ "can make_immutable after reinitialization");
+}
+
+done_testing;