Doc super() warning in Changes
[gitmo/Moose.git] / t / metaclasses / moose_for_meta.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7
8
9 =pod
10
11 This test demonstrates the ability to extend
12 Moose meta-level classes using Moose itself.
13
14 =cut
15
16 {
17     package My::Meta::Class;
18     use Moose;
19
20     extends 'Moose::Meta::Class';
21
22     around 'create_anon_class' => sub {
23         my $next = shift;
24         my ($self, %options) = @_;
25         $options{superclasses} = [ 'Moose::Object' ]
26             unless exists $options{superclasses};
27         $next->($self, %options);
28     };
29 }
30
31 my $anon = My::Meta::Class->create_anon_class();
32 isa_ok($anon, 'My::Meta::Class');
33 isa_ok($anon, 'Moose::Meta::Class');
34 isa_ok($anon, 'Class::MOP::Class');
35
36 is_deeply(
37     [ $anon->superclasses ],
38     [ 'Moose::Object' ],
39     '... got the default superclasses');
40
41 {
42     package My::Meta::Attribute::DefaultReadOnly;
43     use Moose;
44
45     extends 'Moose::Meta::Attribute';
46
47     around 'new' => sub {
48         my $next = shift;
49         my ($self, $name, %options) = @_;
50         $options{is} = 'ro'
51             unless exists $options{is};
52         $next->($self, $name, %options);
53     };
54 }
55
56 {
57     my $attr = My::Meta::Attribute::DefaultReadOnly->new('foo');
58     isa_ok($attr, 'My::Meta::Attribute::DefaultReadOnly');
59     isa_ok($attr, 'Moose::Meta::Attribute');
60     isa_ok($attr, 'Class::MOP::Attribute');
61
62     ok($attr->has_reader, '... the attribute has a reader (as expected)');
63     ok(!$attr->has_writer, '... the attribute does not have a writer (as expected)');
64     ok(!$attr->has_accessor, '... the attribute does not have an accessor (as expected)');
65 }
66
67 {
68     my $attr = My::Meta::Attribute::DefaultReadOnly->new('foo', (is => 'rw'));
69     isa_ok($attr, 'My::Meta::Attribute::DefaultReadOnly');
70     isa_ok($attr, 'Moose::Meta::Attribute');
71     isa_ok($attr, 'Class::MOP::Attribute');
72
73     ok(!$attr->has_reader, '... the attribute does not have a reader (as expected)');
74     ok(!$attr->has_writer, '... the attribute does not have a writer (as expected)');
75     ok($attr->has_accessor, '... the attribute does have an accessor (as expected)');
76 }
77
78 done_testing;