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