summaryrefslogtreecommitdiffstats
path: root/t/nonmoose-moose-nonmoose.t
blob: 32995471cf2fdae548f1a114d7506091f13d5f55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Moose;

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;

with_immutable {
    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';

with_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';

done_testing;