diff options
Diffstat (limited to 't/comp/use.t')
-rwxr-xr-x | t/comp/use.t | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/t/comp/use.t b/t/comp/use.t index 8546123726..6afc1f0c8f 100755 --- a/t/comp/use.t +++ b/t/comp/use.t @@ -131,35 +131,20 @@ is ($@, ''); eval "use lib 1.01"; isnt ($@, ''); - eval "use lib 0.9 qw(fred)"; is ($@, ''); -if ($^O eq 'MacOS') { - is($INC[0], ":fred:"); -} else { - is($INC[0], "fred"); -} +is($INC[0], "fred"); eval "use lib 1.0 qw(joe)"; is ($@, ''); - -if ($^O eq 'MacOS') { - is($INC[0], ":joe:"); -} else { - is($INC[0], "joe"); -} - +is($INC[0], "joe"); eval "use lib 1.01 qw(freda)"; isnt($@, ''); -if ($^O eq 'MacOS') { - isnt($INC[0], ":freda:"); -} else { - isnt($INC[0], "freda"); -} +isnt($INC[0], "freda"); { local $lib::VERSION = 35.36; |