summaryrefslogtreecommitdiffstats
path: root/t/hide_middleman.t
blob: d0cf65252ac349dc9d5f82415e8e4ff814ae56cc (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;