From 60c5f48aff6a579ce22bd4b4245f7be346609901 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 15 Jun 2010 01:36:37 -0500 Subject: convert to new dzil stuff --- t/21-BUILDARGS.t | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 t/21-BUILDARGS.t (limited to 't/21-BUILDARGS.t') diff --git a/t/21-BUILDARGS.t b/t/21-BUILDARGS.t new file mode 100644 index 0000000..d6aa973 --- /dev/null +++ b/t/21-BUILDARGS.t @@ -0,0 +1,39 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More tests => 4; + +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'); +Foo::Moose->meta->make_immutable; +$foo = Foo::Moose->new('bar', foo => 'baz'); +is($foo->name, 'bar', 'superclass constructor gets the right args (immutable)'); +is($foo->foo, 'baz', 'subclass constructor gets the right args (immutable)'); -- cgit v1.2.3-54-g00ecf