summaryrefslogtreecommitdiff
path: root/t/cwd.t
blob: 6ea55604915334db677b3ea892c1495ebaa3fc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl -T

use strict;
use warnings;

use Test::More;

plan tests => 1;

use URI::file ();
$ENV{PATH} = "/bin:/usr/bin";

my $cwd = eval { URI::file->cwd };
is($@, '', 'no exceptions');