summaryrefslogtreecommitdiffstats
path: root/t/022-replaced-constructor.t
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-20 01:53:47 -0500
committerdoy <doy@tozt.net>2009-04-20 01:53:47 -0500
commita0d73b52a0c2de2e8c8f13f4d0d2c387fd1c5c49 (patch)
tree08b8ec675e6e22fe3bc2d50c2930ed087fab2bdd /t/022-replaced-constructor.t
parent51f11b41aef336cca76b88b3fab9e02a7980ff14 (diff)
downloadmoosex-nonmoose-a0d73b52a0c2de2e8c8f13f4d0d2c387fd1c5c49.tar.gz
moosex-nonmoose-a0d73b52a0c2de2e8c8f13f4d0d2c387fd1c5c49.zip
add a couple todo tests for classes that actually replace the constructor, since i'm not sure if i really want to care about that
Diffstat (limited to 't/022-replaced-constructor.t')
-rw-r--r--t/022-replaced-constructor.t59
1 files changed, 59 insertions, 0 deletions
diff --git a/t/022-replaced-constructor.t b/t/022-replaced-constructor.t
new file mode 100644
index 0000000..b16890a
--- /dev/null
+++ b/t/022-replaced-constructor.t
@@ -0,0 +1,59 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More tests => 7;
+
+our $foo_constructed = 0;
+
+package Foo;
+
+sub new {
+ my $class = shift;
+ bless {}, $class;
+}
+
+package Foo::Moose;
+use Moose;
+use MooseX::NonMoose;
+extends 'Foo';
+
+after new => sub {
+ $main::foo_constructed = 1;
+};
+
+package Foo::Moose2;
+use Moose;
+use MooseX::NonMoose;
+extends 'Foo';
+
+sub new {
+ my $class = shift;
+ $main::foo_constructed = 1;
+ return $class->meta->new_object(@_);
+}
+
+package main;
+my $method = Foo::Moose->meta->get_method('new');
+isa_ok($method, 'Class::MOP::Method::Wrapped');
+my $foo = Foo::Moose->new;
+ok($foo_constructed, 'method modifier called for the constructor');
+$foo_constructed = 0;
+Foo::Moose->meta->make_immutable;
+is($method, Foo::Moose->meta->get_method('new'),
+ 'make_immutable doesn\'t overwrite constructor with method modifiers');
+$foo = Foo::Moose->new;
+ok($foo_constructed, 'method modifier called for the constructor (immutable)');
+
+TODO: {
+local $TODO = "not quite sure how to handle this (or if I even care)";
+$foo_constructed = 0;
+$method = Foo::Moose2->meta->get_method('new');
+$foo = Foo::Moose2->new;
+ok($foo_constructed, 'custom constructor called');
+$foo_constructed = 0;
+Foo::Moose2->meta->make_immutable;
+is($method, Foo::Moose2->meta->get_method('new'),
+ 'make_immutable doesn\'t overwrite custom constructor');
+$foo = Foo::Moose2->new;
+ok($foo_constructed, 'custom constructor called (immutable)');
+}