summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-06-25 11:40:34 -0500
committerJesse Luehrs <doy@tozt.net>2009-06-25 11:40:34 -0500
commitbcb5fe5fedf1b8c77e837587216faa7c01458b36 (patch)
treee1c4a6ce64cd743793f5ae2d1e8629d5d3e47411 /t
parent8bea9e0a07437be7c2580e0e01ae86b5cd9a90c7 (diff)
downloadmoosex-nonmoose-bcb5fe5fedf1b8c77e837587216faa7c01458b36.tar.gz
moosex-nonmoose-bcb5fe5fedf1b8c77e837587216faa7c01458b36.zip
add failing test for nonmoose-moose-nonmoose inheritance
Diffstat (limited to 't')
-rw-r--r--t/024-nonmoose-moose-nonmoose.t85
1 files changed, 85 insertions, 0 deletions
diff --git a/t/024-nonmoose-moose-nonmoose.t b/t/024-nonmoose-moose-nonmoose.t
new file mode 100644
index 0000000..f2a5791
--- /dev/null
+++ b/t/024-nonmoose-moose-nonmoose.t
@@ -0,0 +1,85 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More tests => 16;
+
+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::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)');
+
+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::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)');