summaryrefslogtreecommitdiffstats
path: root/t/hide_middleman.t
diff options
context:
space:
mode:
authorChad 'Exodist' Granum <exodist7@gmail.com>2011-12-20 15:43:57 -0800
committerJesse Luehrs <doy@tozt.net>2012-01-04 15:18:54 -0600
commit1034da1ff657419f79977ab52bb2e9e0f7b3a413 (patch)
tree2681881422e9f8412995dd815acdee06d3a69dac /t/hide_middleman.t
parent86d622ad73616e201ae69d0836b4db1cdd01130c (diff)
downloadcircular-require-1034da1ff657419f79977ab52bb2e9e0f7b3a413.tar.gz
circular-require-1034da1ff657419f79977ab52bb2e9e0f7b3a413.zip
Add feature to hide modules that may call require for you when desired.
Diffstat (limited to 't/hide_middleman.t')
-rw-r--r--t/hide_middleman.t22
1 files changed, 22 insertions, 0 deletions
diff --git a/t/hide_middleman.t b/t/hide_middleman.t
new file mode 100644
index 0000000..d0cf652
--- /dev/null
+++ b/t/hide_middleman.t
@@ -0,0 +1,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;