summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-20 20:57:55 -0500
committerdoy <doy@tozt.net>2009-04-20 20:57:55 -0500
commit9b9d289a7a8bb64a6ef0a9c732d51b71abb9f9ce (patch)
tree2590b9152975ae28c47fd458c0071ce73a99cf7d /t
parent6e84d4f6360763e074869ff871e7d54abbb4ebcf (diff)
downloadmoosex-nonmoose-9b9d289a7a8bb64a6ef0a9c732d51b71abb9f9ce.tar.gz
moosex-nonmoose-9b9d289a7a8bb64a6ef0a9c732d51b71abb9f9ce.zip
test using just the metaclass trait
Diffstat (limited to 't')
-rw-r--r--t/030-only-metaclass-trait.t22
1 files changed, 22 insertions, 0 deletions
diff --git a/t/030-only-metaclass-trait.t b/t/030-only-metaclass-trait.t
new file mode 100644
index 0000000..07be5d8
--- /dev/null
+++ b/t/030-only-metaclass-trait.t
@@ -0,0 +1,22 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More tests => 4;
+
+package Foo;
+
+sub new { bless {}, shift }
+
+package Foo::Moose;
+use Moose -traits => 'MooseX::NonMoose::Meta::Role::Class';
+extends 'Foo';
+
+package main;
+ok(Foo::Moose->meta->has_method('new'),
+ 'using only the metaclass trait still installs the constructor');
+isa_ok(Foo::Moose->new, 'Moose::Object');
+isa_ok(Foo::Moose->new, 'Foo');
+my $method = Foo::Moose->meta->get_method('new');
+Foo::Moose->meta->make_immutable;
+is(Foo::Moose->meta->get_method('new'), $method,
+ 'inlining doesn\'t happen when the constructor trait isn\'t used');