failing test for two subclasses of the same non-Moose class with different metaclasses
[gitmo/Moose.git] / t / 060_compat / 003_foreign_inheritence.t
CommitLineData
e522431d 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
cdeb30dc 6use Test::More tests => 6; #7;
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
cdeb30dc 51 package MyBase;
52
53 sub foo { }
54
55 package Custom::Meta1;
56 use base qw(Moose::Meta::Class);
57
58 package Custom::Meta2;
59 use base qw(Moose::Meta::Class);
60
61 package SubClass1;
62 use metaclass 'Custom::Meta1';
63 use Moose;
64
65 extends 'MyBase';
66
67 package SubClass2;
68 use metaclass 'Custom::Meta2';
69 use Moose;
70
2f9e53fb 71 # XXX FIXME subclassing meta-attrs and immutable-ing the subclass fails
e522431d 72}
73
74my $foo_moose = Foo::Moose->new();
75isa_ok($foo_moose, 'Foo::Moose');
76isa_ok($foo_moose, 'Elk');
77
78is($foo_moose->no_moose, 'Elk', '... got the right value from the Elk method');
b43a4bca 79is($foo_moose->moose, 'Foo', '... got the right value from the Foo::Moose method');
80
0305961b 81#lives_ok {
82# Old::Bucket::Nose->meta->make_immutable(debug => 0);
83#} 'Immutability on Moose class extending Class::MOP class ok';
cdeb30dc 84
85lives_ok {
86 SubClass2::extends('MyBase');
87} 'Can subclass the same non-Moose class twice with different metaclasses';