From 234e6a77e247f9e9ccb933588b0405846bbf8d7f Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 7 May 2009 18:23:18 -0500 Subject: add a test for using mx-nonmoose with custom exporters --- t/031-moose-exporter.t | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 t/031-moose-exporter.t (limited to 't') diff --git a/t/031-moose-exporter.t b/t/031-moose-exporter.t new file mode 100644 index 0000000..8fbfbae --- /dev/null +++ b/t/031-moose-exporter.t @@ -0,0 +1,71 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More tests => 8; + +BEGIN { + require Moose; + + package Foo::Exporter::Class; + use Moose::Exporter; + Moose::Exporter->setup_import_methods(also => ['Moose']); + + sub init_meta { + shift; + my %options = @_; + Moose->init_meta(%options); + Moose::Util::MetaRole::apply_metaclass_roles( + for_class => $options{for_class}, + metaclass_roles => ['MooseX::NonMoose::Meta::Role::Class'], + ); + return Class::MOP::class_of($options{for_class}); + } + + package Foo::Exporter::ClassAndConstructor; + use Moose::Exporter; + Moose::Exporter->setup_import_methods(also => ['Moose']); + + sub init_meta { + shift; + my %options = @_; + Moose->init_meta(%options); + Moose::Util::MetaRole::apply_metaclass_roles( + for_class => $options{for_class}, + metaclass_roles => ['MooseX::NonMoose::Meta::Role::Class'], + constructor_class_roles => + ['MooseX::NonMoose::Meta::Role::Constructor'], + ); + return Class::MOP::class_of($options{for_class}); + } + +} + +package Foo; + +sub new { bless {}, shift } + +package Foo::Moose; +BEGIN { Foo::Exporter::Class->import } +extends 'Foo'; + +package Foo::Moose2; +BEGIN { Foo::Exporter::ClassAndConstructor->import } +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'); +ok(Foo::Moose2->meta->has_method('new'), + 'using only the metaclass trait still installs the constructor'); +isa_ok(Foo::Moose2->new, 'Moose::Object'); +isa_ok(Foo::Moose2->new, 'Foo'); +my $method2 = Foo::Moose2->meta->get_method('new'); +Foo::Moose2->meta->make_immutable; +isnt(Foo::Moose2->meta->get_method('new'), $method2, + 'inlining does happen when the constructor trait is used'); -- cgit v1.2.3