MOON
Server: Apache
System: Linux vps.thepromohut.com 2.6.18-398.el5 #1 SMP Tue Sep 16 20:51:48 EDT 2014 i686
User: caretrak (507)
PHP: 5.2.10
Disabled: NONE
Upload Files
File: /home/.cpanm/work/1444124875.23915/local-lib-2.000017/t/coderefs_in_inc.t
use strict;
use warnings;
use Test::More tests => 2;
use lib 't/lib';
use TempDir;
use Cwd;

# Test that refs in @INC don't get mangled.

my $dir = mk_temp_dir('test_local_lib-XXXXX');

use local::lib ();
my $code = sub {};
push(@INC, $code);
local::lib->import($dir);
ok grep({ $_ eq $code } @INC), 'Can find code ref in @INC';
ok grep({ ref $_ } @INC), 'It really is a ref, not stringified';