File: die.t

package info (click to toggle)
libwww-mechanize-perl 1.73-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 668 kB
  • ctags: 143
  • sloc: perl: 3,360; makefile: 4
file content (34 lines) | stat: -rw-r--r-- 581 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
31
32
33
34
#!perl -Tw

use warnings;
use strict;
use Test::More;

BEGIN {
    eval 'use Test::Exception';
    plan skip_all => 'Test::Exception required to test die' if $@;
    plan tests => 5;
}

BEGIN {
    use_ok( 'WWW::Mechanize' );
}


CHECK_DEATH: {
    my $m = WWW::Mechanize->new;
    isa_ok( $m, 'WWW::Mechanize' );

    dies_ok {
        $m->die( 'OH NO!  ERROR!' );
    } 'Expecting to die';
}

CHECK_LIVING: {
    my $m = WWW::Mechanize->new( onerror => undef );
    isa_ok( $m, 'WWW::Mechanize' );

    lives_ok {
        $m->die( 'OH NO!  ERROR!' );
    } 'Expecting to die';
}