summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/Legacy/Builder/carp.t
blob: b363438cbc176b35f4812474be4e22cb7c3ddcd7 (plain)
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
#!/usr/bin/perl
use strict;
use warnings;

BEGIN {
    if( $ENV{PERL_CORE} ) {
        chdir 't';
        @INC = '../lib';
    }
}


use Test::More tests => 3;
use Test::Builder;
use Test::Stream::Context qw/context/;

sub foo { my $ctx = context(); Test::Builder->new->croak("foo") }
sub bar { my $ctx = context(); Test::Builder->new->carp("bar")  }

eval { foo() };
is $@, sprintf "foo at %s line %s.\n", $0, __LINE__ - 1;

eval { Test::Builder->new->croak("this") };
is $@, sprintf "this at %s line %s.\n", $0, __LINE__ - 1;

{
    my $warning = '';
    local $SIG{__WARN__} = sub {
        $warning .= join '', @_;
    };

    bar();
    is $warning, sprintf "bar at %s line %s.\n", $0, __LINE__ - 1;
}