From 8bf5e6931a1bd96df0cdb1ceb94bbb3e578a8126 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 4 Sep 2013 19:38:21 -0400 Subject: packaging --- t/only-metaclass-trait.t | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 t/only-metaclass-trait.t (limited to 't/only-metaclass-trait.t') diff --git a/t/only-metaclass-trait.t b/t/only-metaclass-trait.t new file mode 100644 index 0000000..c103067 --- /dev/null +++ b/t/only-metaclass-trait.t @@ -0,0 +1,24 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More; + +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'); + +done_testing; -- cgit v1.2.3-54-g00ecf