Redid conversion to Test::Fatal
[gitmo/Moose.git] / t / 010_basics / 017_error_handling.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7 use Test::Fatal;
8
9 # This tests the error handling in Moose::Object only
10
11 {
12     package Foo;
13     use Moose;
14 }
15
16 like( exception { Foo->new('bad') }, qr/^\QSingle parameters to new() must be a HASH ref/, 'A single non-hashref arg to a constructor throws an error' );
17 like( exception { Foo->new(undef) }, qr/^\QSingle parameters to new() must be a HASH ref/, 'A single non-hashref arg to a constructor throws an error' );
18
19 like( exception { Foo->does() }, qr/^\QYou must supply a role name to does()/, 'Cannot call does() without a role name' );
20
21 done_testing;