File: assert_exists.t

package info (click to toggle)
libcarp-assert-more-perl 1.12-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 180 kB
  • ctags: 29
  • sloc: perl: 880; makefile: 51
file content (58 lines) | stat: -rw-r--r-- 761 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!perl -Tw

use warnings;
use strict;

use Test::More tests=>8;

BEGIN {
    use_ok( 'Carp::Assert::More' );
}

my %foo = (
    name => "Andy Lester",
    phone => "578-3338",
    wango => undef,
);


eval {
    assert_exists( \%foo, 'name' );
};
is( $@, "" );


eval {
    assert_exists( \%foo, 'wango' );
};
is( $@, "" );


eval {
    assert_exists( \%foo, 'Nonexistent' );
};
like( $@, qr/Assert.+failed/ );


eval {
    assert_exists( \%foo, [qw( name )] );
};
is( $@, "" );

eval {
    assert_exists( \%foo, [qw( name social-security-number )] );
};
like( $@, qr/Assertion.+failed/ );

eval {
    assert_exists( \%foo, [qw( name phone )] );
};
is( $@, "" );


eval {
    assert_exists( \%foo, ['name','Nonexistent'] );
};
like( $@, qr/Assert.+failed/ );