Changes for 0.91 re: constructor calling blessed
[gitmo/Moose.git] / t / 010_basics / 001_basic_class_setup.t
CommitLineData
bc1e29b5 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
7ff56534 6use Test::More tests => 22;
bc1e29b5 7use Test::Exception;
8
7ff56534 9
bc1e29b5 10
11{
12 package Foo;
13 use Moose;
05d9eaf6 14 use Moose::Util::TypeConstraints;
bc1e29b5 15}
16
17can_ok('Foo', 'meta');
18isa_ok(Foo->meta, 'Moose::Meta::Class');
19
e522431d 20ok(Foo->meta->has_method('meta'), '... we got the &meta method');
bc1e29b5 21ok(Foo->isa('Moose::Object'), '... Foo is automagically a Moose::Object');
22
bbd2fe69 23dies_ok {
d03bd989 24 Foo->meta->has_method()
bbd2fe69 25} '... has_method requires an arg';
26
27dies_ok {
d03bd989 28 Foo->meta->has_method('')
bbd2fe69 29} '... has_method requires an arg';
30
ef333f17 31can_ok('Foo', 'does');
32
bc1e29b5 33foreach my $function (qw(
f4fce6c8 34 extends
35 has
36 before after around
37 blessed confess
38 type subtype as where
39 coerce from via
40 find_type_constraint
41 )) {
bc1e29b5 42 ok(!Foo->meta->has_method($function), '... the meta does not treat "' . $function . '" as a method');
43}
44