summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-08-20 12:57:58 -0500
committerJesse Luehrs <doy@tozt.net>2010-08-20 12:57:58 -0500
commit35a44de4f6d64502ac59b84b40d1034e143ade52 (patch)
tree0a9b7a00e6ab753b9bebcb506ff850dab1295756 /t
parent180f81a127a2d1b0ec2eee086eb500041a9caa3d (diff)
downloadmoosex-nonmoose-35a44de4f6d64502ac59b84b40d1034e143ade52.tar.gz
moosex-nonmoose-35a44de4f6d64502ac59b84b40d1034e143ade52.zip
fix edge case with inlined fallback constructors
need to handle hashref parameters
Diffstat (limited to 't')
-rw-r--r--t/052-hashref-constructor.t67
1 files changed, 67 insertions, 0 deletions
diff --git a/t/052-hashref-constructor.t b/t/052-hashref-constructor.t
new file mode 100644
index 0000000..74fd530
--- /dev/null
+++ b/t/052-hashref-constructor.t
@@ -0,0 +1,67 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use Test::Exception;
+
+{
+ package Foo;
+
+ sub new {
+ my $class = shift;
+ bless { ref($_[0]) ? %{$_[0]} : @_ }, $class;
+ }
+
+ sub foo {
+ my $self = shift;
+ $self->{foo};
+ }
+}
+
+{
+ package Bar;
+ use Moose;
+ use MooseX::NonMoose;
+
+ extends 'Foo';
+
+ has _bar => (
+ init_arg => 'bar',
+ reader => 'bar',
+ );
+
+ __PACKAGE__->meta->make_immutable;
+}
+
+{
+ package Baz;
+ use Moose;
+
+ extends 'Bar';
+
+ has _baz => (
+ init_arg => 'baz',
+ reader => 'baz',
+ );
+}
+
+{
+ my $baz;
+ lives_ok { $baz = Baz->new( foo => 1, bar => 2, baz => 3 ) }
+ "constructor lives";
+ is($baz->foo, 1, "foo set");
+ is($baz->bar, 2, "bar set");
+ is($baz->baz, 3, "baz set");
+
+}
+
+{
+ my $baz;
+ lives_ok { $baz = Baz->new({foo => 1, bar => 2, baz => 3}) }
+ "constructor lives (hashref)";
+ is($baz->foo, 1, "foo set (hashref)");
+ is($baz->bar, 2, "bar set (hashref)");
+ is($baz->baz, 3, "baz set (hashref)");
+}
+
+done_testing;