summaryrefslogtreecommitdiffstats
path: root/t/hide_middleman.t
blob: 0fa751487ed158d3ae5bfb55586071875e6369f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env perl
use strict;
use warnings;
use lib 't/hide_middleman';
use Test::More;
use Test::Exception;

my @warnings;
$SIG{__WARN__} = sub { push @warnings => @_ };

# Test passes if you comment this out
no circular::require -hide => 'base';

use_ok( 'Foo' );

is_deeply(
    \@warnings,
    ["Circular require detected: Foo.pm (from Bar)\n"],
    "Show the module that used base, instead of 'base' when a cycle occurs from a use base."
);

done_testing;