File: 30_Class_Throwable_inline_exceptions_test.t

package info (click to toggle)
libclass-throwable-perl 0.10-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 108 kB
  • ctags: 20
  • sloc: perl: 447; makefile: 43
file content (30 lines) | stat: -rw-r--r-- 726 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 7;

BEGIN {
    use_ok('Class::Throwable' => qw(
                Exception::Test 
                Exception::Test::IllegalOperation
                ));
}

can_ok("Exception::Test", 'throw');
can_ok("Exception::Test::IllegalOperation", 'throw');

eval { throw Exception::Test };
isa_ok($@, 'Exception::Test');

is($@->getMessage(), 
   'An Exception::Test Exception has been thrown', 
   '... the custom message is correct');

eval { throw Exception::Test::IllegalOperation };
isa_ok($@, 'Exception::Test::IllegalOperation');

is($@->getMessage(), 
   'An Exception::Test::IllegalOperation Exception has been thrown', 
   '... the custom message is correct');