new test
[gitmo/Moose.git] / t / 010_basics / 017_error_handling.t
CommitLineData
3ce51439 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More tests => 2;
7use Test::Exception;
8
9# This tests the error handling in Moose::Object only
10
11{
12 package Foo;
13 use Moose;
14}
15
16throws_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
19throws_ok { Foo->does() } qr/^\QYou much supply a role name to does()/,
20 'Cannot call does() without a role name';