summaryrefslogtreecommitdiffstats
path: root/t/moose-exporter.t
diff options
context:
space:
mode:
Diffstat (limited to 't/moose-exporter.t')
-rw-r--r--t/moose-exporter.t77
1 files changed, 77 insertions, 0 deletions
diff --git a/t/moose-exporter.t b/t/moose-exporter.t
new file mode 100644
index 0000000..13b556d
--- /dev/null
+++ b/t/moose-exporter.t
@@ -0,0 +1,77 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+
+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_metaroles(
+ for => $options{for_class},
+ class_metaroles => {
+ class => ['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_metaroles(
+ for => $options{for_class},
+ class_metaroles => {
+ class => ['MooseX::NonMoose::Meta::Role::Class'],
+ constructor =>
+ ['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');
+
+done_testing;