summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
blob: d5951d4007ed44a0f8fb6bbab0f77905f0a7eeb0 (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
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 9;
use Test::Exception;

package Foo;
use Moose;
use MooseX::ABC;

requires 'bar', 'baz';

package Foo::Sub1;
use Moose;
::lives_ok { extends 'Foo' } 'extending works when the requires are fulfilled';
sub bar { }
sub baz { }

package Foo::Sub2;
use Moose;
::throws_ok { extends 'Foo' } qr/Foo requires Foo::Sub2 to implement baz/,
    'extending fails with the correct error when requires are not fulfilled';
sub bar { }

package Foo::Sub::Sub;
use Moose;
::lives_ok { extends 'Foo::Sub1' } 'extending twice works';

package main;
my $foosub;
lives_ok { $foosub = Foo::Sub1->new }
    'instantiating concrete subclasses works';
isa_ok($foosub, 'Foo', 'inheritance is correct');
my $foosubsub;
lives_ok { $foosubsub = Foo::Sub::Sub->new }
    'instantiating deeper concrete subclasses works';
isa_ok($foosubsub, 'Foo', 'inheritance is correct');
isa_ok($foosubsub, 'Foo::Sub1', 'inheritance is correct');
throws_ok { Foo->new } qr/Foo is abstract, it cannot be instantiated/,
    'instantiating abstract classes fails';