Fix a small comment typo
[gitmo/Moose.git] / lib / Moose / Cookbook / Basics / Recipe11.pod
CommitLineData
daa0fd7d 1package Moose::Cookbook::Basics::Recipe11;
2
3# ABSTRACT: Extending a non-Moose base class
4
5__END__
6
04d80e2a 7
8=pod
9
1f476b5f 10=begin testing-SETUP
11
0adca353 12use Test::Requires {
13 'DateTime' => '0',
14 'DateTime::Calendar::Mayan' => '0',
f14f6809 15 'MooseX::NonMoose' => '0',
0adca353 16};
1f476b5f 17
18=end testing-SETUP
19
04d80e2a 20=head1 SYNOPSIS
21
1f476b5f 22 package My::DateTime;
04d80e2a 23
1f476b5f 24 use Moose;
f14f6809 25 use MooseX::NonMoose;
26 extends qw( DateTime );
04d80e2a 27
1f476b5f 28 has 'mayan_date' => (
29 is => 'ro',
30 isa => 'DateTime::Calendar::Mayan',
31 init_arg => undef,
32 lazy => 1,
33 builder => '_build_mayan_date',
34 clearer => '_clear_mayan_date',
35 predicate => 'has_mayan_date',
04d80e2a 36 );
37
1f476b5f 38 after 'set' => sub {
39 $_[0]->_clear_mayan_date;
40 };
04d80e2a 41
1f476b5f 42 sub _build_mayan_date {
43 DateTime::Calendar::Mayan->from_object( object => $_[0] );
04d80e2a 44 }
45
46=head1 DESCRIPTION
47
1f476b5f 48This recipe demonstrates how to use Moose to subclass a parent which
49is not Moose based. This recipe only works if the parent class uses a
50blessed hash reference for object instances. If your parent is doing
a68c47da 51something funkier, you should check out L<MooseX::NonMoose::InsideOut> and L<MooseX::InsideOut>.
04d80e2a 52
f14f6809 53The meat of this recipe is contained in L<MooseX::NonMoose>, which does all
1f476b5f 54the grunt work for you.
04d80e2a 55
1f476b5f 56=begin testing
57
58my $dt = My::DateTime->new( year => 1970, month => 2, day => 24 );
59
60can_ok( $dt, 'mayan_date' );
61isa_ok( $dt->mayan_date, 'DateTime::Calendar::Mayan' );
62is( $dt->mayan_date->date, '12.17.16.9.19', 'got expected mayan date' );
63
64$dt->set( year => 2009 );
65ok( ! $dt->has_mayan_date, 'mayan_date is cleared after call to ->set' );
66
67=end testing
68
04d80e2a 69=cut