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/24-nonmoose-moose-nonmoose.t | 105 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 t/24-nonmoose-moose-nonmoose.t (limited to 't/24-nonmoose-moose-nonmoose.t') diff --git a/t/24-nonmoose-moose-nonmoose.t b/t/24-nonmoose-moose-nonmoose.t new file mode 100644 index 0000000..faa6f6f --- /dev/null +++ b/t/24-nonmoose-moose-nonmoose.t @@ -0,0 +1,105 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More tests => 32; + +package Foo; + +sub new { + my $class = shift; + bless {@_}, $class; +} + +sub foo { shift->{name} } + +package Foo::Moose; +use Moose; +use MooseX::NonMoose; +extends 'Foo'; + +has foo2 => ( + is => 'rw', + isa => 'Str', +); + +package Foo::Moose::Sub; +use base 'Foo::Moose'; + +package Bar; + +sub new { + my $class = shift; + bless {name => $_[0]}, $class; +} + +sub bar { shift->{name} } + +package Bar::Moose; +use Moose; +use MooseX::NonMoose; +extends 'Bar'; + +has bar2 => ( + is => 'rw', + isa => 'Str', +); + +sub FOREIGNBUILDARGS { + my $class = shift; + my %args = @_; + return $args{name}; +} + +package Bar::Moose::Sub; +use base 'Bar::Moose'; + +package main; +my $foo = Foo::Moose::Sub->new(name => 'foomoosesub', foo2 => 'FOO2'); +isa_ok($foo, 'Foo'); +isa_ok($foo, 'Foo::Moose'); +is($foo->foo, 'foomoosesub', 'got name from nonmoose constructor'); +is($foo->foo2, 'FOO2', 'got attribute value from moose constructor'); +$foo = Foo::Moose->new(name => 'foomoosesub', foo2 => 'FOO2'); +isa_ok($foo, 'Foo'); +isa_ok($foo, 'Foo::Moose'); +is($foo->foo, 'foomoosesub', 'got name from nonmoose constructor'); +is($foo->foo2, 'FOO2', 'got attribute value from moose constructor'); +Foo::Moose->meta->make_immutable; +$foo = Foo::Moose::Sub->new(name => 'foomoosesub', foo2 => 'FOO2'); +isa_ok($foo, 'Foo'); +isa_ok($foo, 'Foo::Moose'); +TODO: { +local $TODO = 'nonmoose-moose-nonmoose inheritance doesn\'t quite work'; +is($foo->foo, 'foomoosesub', 'got name from nonmoose constructor (immutable)'); +} +is($foo->foo2, 'FOO2', 'got attribute value from moose constructor (immutable)'); +$foo = Foo::Moose->new(name => 'foomoosesub', foo2 => 'FOO2'); +isa_ok($foo, 'Foo'); +isa_ok($foo, 'Foo::Moose'); +is($foo->foo, 'foomoosesub', 'got name from nonmoose constructor (immutable)'); +is($foo->foo2, 'FOO2', 'got attribute value from moose constructor (immutable)'); + +my $bar = Bar::Moose::Sub->new(name => 'barmoosesub', bar2 => 'BAR2'); +isa_ok($bar, 'Bar'); +isa_ok($bar, 'Bar::Moose'); +is($bar->bar, 'barmoosesub', 'got name from nonmoose constructor'); +is($bar->bar2, 'BAR2', 'got attribute value from moose constructor'); +$bar = Bar::Moose->new(name => 'barmoosesub', bar2 => 'BAR2'); +isa_ok($bar, 'Bar'); +isa_ok($bar, 'Bar::Moose'); +is($bar->bar, 'barmoosesub', 'got name from nonmoose constructor'); +is($bar->bar2, 'BAR2', 'got attribute value from moose constructor'); +Bar::Moose->meta->make_immutable; +$bar = Bar::Moose::Sub->new(name => 'barmoosesub', bar2 => 'BAR2'); +isa_ok($bar, 'Bar'); +isa_ok($bar, 'Bar::Moose'); +TODO: { +local $TODO = 'nonmoose-moose-nonmoose inheritance doesn\'t quite work'; +is($bar->bar, 'barmoosesub', 'got name from nonmoose constructor (immutable)'); +} +is($bar->bar2, 'BAR2', 'got attribute value from moose constructor (immutable)'); +$bar = Bar::Moose->new(name => 'barmoosesub', bar2 => 'BAR2'); +isa_ok($bar, 'Bar'); +isa_ok($bar, 'Bar::Moose'); +is($bar->bar, 'barmoosesub', 'got name from nonmoose constructor (immutable)'); +is($bar->bar2, 'BAR2', 'got attribute value from moose constructor (immutable)'); -- cgit v1.2.3-54-g00ecf