foo
[gitmo/Moose.git] / t / 012_super_and_override.t
CommitLineData
b6fe348f 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
d05cd563 6use Test::More tests => 17;
7use Test::Exception;
b6fe348f 8
9BEGIN {
10 use_ok('Moose');
11}
12
13{
14 package Foo;
b6fe348f 15 use Moose;
16
17 sub foo { 'Foo::foo' }
18 sub bar { 'Foo::bar' }
19 sub baz { 'Foo::baz' }
20
21 package Bar;
b6fe348f 22 use Moose;
23
24 extends 'Foo';
25
26 override bar => sub { 'Bar::bar -> ' . super() };
27
28 package Baz;
b6fe348f 29 use Moose;
30
31 extends 'Bar';
32
159da176 33 override bar => sub { 'Baz::bar -> ' . super() };
b6fe348f 34 override baz => sub { 'Baz::baz -> ' . super() };
35}
36
37my $baz = Baz->new();
38isa_ok($baz, 'Baz');
39isa_ok($baz, 'Bar');
40isa_ok($baz, 'Foo');
41
42is($baz->foo(), 'Foo::foo', '... got the right value from &foo');
159da176 43is($baz->bar(), 'Baz::bar -> Bar::bar -> Foo::bar', '... got the right value from &bar');
b6fe348f 44is($baz->baz(), 'Baz::baz -> Foo::baz', '... got the right value from &baz');
159da176 45
46my $bar = Bar->new();
47isa_ok($bar, 'Bar');
48isa_ok($bar, 'Foo');
49
50is($bar->foo(), 'Foo::foo', '... got the right value from &foo');
51is($bar->bar(), 'Bar::bar -> Foo::bar', '... got the right value from &bar');
52is($bar->baz(), 'Foo::baz', '... got the right value from &baz');
53
54my $foo = Foo->new();
55isa_ok($foo, 'Foo');
56
57is($foo->foo(), 'Foo::foo', '... got the right value from &foo');
58is($foo->bar(), 'Foo::bar', '... got the right value from &bar');
d05cd563 59is($foo->baz(), 'Foo::baz', '... got the right value from &baz');
60
61# some error cases
62
63{
64 package Bling;
d05cd563 65 use Moose;
66
67 sub bling { 'Bling::bling' }
68
69 package Bling::Bling;
d05cd563 70 use Moose;
71
72 extends 'Bling';
73
74 sub bling { 'Bling::bling' }
75
76 ::dies_ok {
77 override 'bling' => sub {};
78 } '... cannot override a method which has a local equivalent';
79
80}
81