cope with fixed initializer arg order in mop
[gitmo/Moose.git] / t / 060_compat / 003_foreign_inheritence.t
CommitLineData
e522431d 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
0305961b 6use Test::More tests => 5; #6;
e522431d 7use Test::Exception;
8
9BEGIN {
10 use_ok('Moose');
11}
12
13{
14 package Elk;
15 use strict;
16 use warnings;
17
18 sub new {
19 my $class = shift;
20 bless { no_moose => "Elk" } => $class;
21 }
22
23 sub no_moose { $_[0]->{no_moose} }
24
c235cd98 25 package Foo::Moose;
e522431d 26 use Moose;
27
28 extends 'Elk';
29
30 has 'moose' => (is => 'ro', default => 'Foo');
31
32 sub new {
33 my $class = shift;
34 my $super = $class->SUPER::new(@_);
35 return $class->meta->new_object('__INSTANCE__' => $super, @_);
36 }
8ecb1fa0 37
38 __PACKAGE__->meta->make_immutable(debug => 0);
b43a4bca 39
0305961b 40 package Bucket;
41 use metaclass 'Class::MOP::Class';
42
43 __PACKAGE__->meta->add_attribute('squeegee' => (accessor => 'squeegee'));
44
45 package Old::Bucket::Nose;
46 # see http://www.moosefoundation.org/moose_facts.htm
47 use Moose;
48
49 extends 'Bucket';
2f9e53fb 50
51 # XXX FIXME subclassing meta-attrs and immutable-ing the subclass fails
e522431d 52}
53
54my $foo_moose = Foo::Moose->new();
55isa_ok($foo_moose, 'Foo::Moose');
56isa_ok($foo_moose, 'Elk');
57
58is($foo_moose->no_moose, 'Elk', '... got the right value from the Elk method');
b43a4bca 59is($foo_moose->moose, 'Foo', '... got the right value from the Foo::Moose method');
60
0305961b 61#lives_ok {
62# Old::Bucket::Nose->meta->make_immutable(debug => 0);
63#} 'Immutability on Moose class extending Class::MOP class ok';