From 9b9d289a7a8bb64a6ef0a9c732d51b71abb9f9ce Mon Sep 17 00:00:00 2001 From: doy Date: Mon, 20 Apr 2009 20:57:55 -0500 Subject: test using just the metaclass trait --- t/030-only-metaclass-trait.t | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 t/030-only-metaclass-trait.t (limited to 't/030-only-metaclass-trait.t') 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'); -- cgit v1.2.3-54-g00ecf