summaryrefslogtreecommitdiffstats
path: root/t/BUILDARGS.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-09-04 19:38:21 -0400
committerJesse Luehrs <doy@tozt.net>2013-09-04 19:47:11 -0400
commit8bf5e6931a1bd96df0cdb1ceb94bbb3e578a8126 (patch)
tree2e659a8f07ea1cca3091a9c0578bbd8e53c20c11 /t/BUILDARGS.t
parent8e0b4f219f2d8d94cb6937ef47168ac5fac03cd9 (diff)
downloadmoosex-nonmoose-8bf5e6931a1bd96df0cdb1ceb94bbb3e578a8126.tar.gz
moosex-nonmoose-8bf5e6931a1bd96df0cdb1ceb94bbb3e578a8126.zip
packaging
Diffstat (limited to 't/BUILDARGS.t')
-rw-r--r--t/BUILDARGS.t40
1 files changed, 40 insertions, 0 deletions
diff --git a/t/BUILDARGS.t b/t/BUILDARGS.t
new file mode 100644
index 0000000..32bb72a
--- /dev/null
+++ b/t/BUILDARGS.t
@@ -0,0 +1,40 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use Test::Moose;
+
+package Foo;
+
+sub new {
+ my $class = shift;
+ bless { name => $_[0] }, $class;
+}
+
+sub name { shift->{name} }
+
+package Foo::Moose;
+use Moose;
+use MooseX::NonMoose;
+extends 'Foo';
+
+has foo => (
+ is => 'rw',
+);
+
+sub BUILDARGS {
+ my $class = shift;
+ # remove the argument that's only for passing to the superclass constructor
+ shift;
+ return $class->SUPER::BUILDARGS(@_);
+}
+
+package main;
+
+with_immutable {
+ my $foo = Foo::Moose->new('bar', foo => 'baz');
+ is($foo->name, 'bar', 'superclass constructor gets the right args');
+ is($foo->foo, 'baz', 'subclass constructor gets the right args');
+} 'Foo::Moose';
+
+done_testing;