summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-20 00:52:06 -0500
committerdoy <doy@tozt.net>2009-04-20 00:52:06 -0500
commit6b6b2c190aa1992bd36ce636c3827587858896ae (patch)
treef4caa4768db800c8835cd79e001edcb377e55e7c /t
parent1224d2b9a3965e40a9c5605eb455ff8a3372380b (diff)
downloadmoosex-nonmoose-6b6b2c190aa1992bd36ce636c3827587858896ae.tar.gz
moosex-nonmoose-6b6b2c190aa1992bd36ce636c3827587858896ae.zip
add a basic test for BUILDARGS
Diffstat (limited to 't')
-rw-r--r--t/021-BUILDARGS.t35
1 files changed, 35 insertions, 0 deletions
diff --git a/t/021-BUILDARGS.t b/t/021-BUILDARGS.t
new file mode 100644
index 0000000..c1270ee
--- /dev/null
+++ b/t/021-BUILDARGS.t
@@ -0,0 +1,35 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More tests => 2;
+
+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;
+
+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');