File: Type.t

package info (click to toggle)
libgeoip2-perl 2.006002-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,156 kB
  • sloc: perl: 2,275; makefile: 10
file content (30 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (3)
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
use strict;
use warnings;

use Test::Fatal qw( success );
use Test::More 0.88;

use GeoIP2::Error::Type;
use Try::Tiny;

## no critic (TryTiny::RequireBlockTermination)
try {
    thrower();
}
catch {
    is( $_->type,  'foo', 'correct type thrown' );
    is( $_->value, 'bar', 'correct value thrown' );
}
success {
    fail('Expected an exception');
};

sub thrower {
    GeoIP2::Error::Type->throw(
        message => 'x is not y',
        type    => 'foo',
        value   => 'bar',
    );
}

done_testing();