Skip to content

Commit f7cd74c

Browse files
author
John Peacock
committed
flow: Merged <feature> 'RT-119123' to <develop> ('develop').
2 parents 26cf0c3 + e93bb16 commit f7cd74c

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

t/00impl-pp.t

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ use Test::More qw/no_plan/;
88
use File::Spec;
99

1010
BEGIN {
11-
my $coretests = File::Spec->catpath(
12-
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
11+
my $coretests = File::Spec->rel2abs(
12+
File::Spec->catpath(
13+
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
14+
)
1315
);
1416
require $coretests;
1517
use_ok('version::vpp', 0.9917);

t/01base.t

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ use Test::More qw/no_plan/;
88
use File::Spec;
99

1010
BEGIN {
11-
my $coretests = File::Spec->catpath(
12-
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
11+
my $coretests = File::Spec->rel2abs(
12+
File::Spec->catpath(
13+
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
14+
)
1315
);
1416
require $coretests;
1517
use_ok('version', 0.9917);

t/02derived.t

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ use File::Spec;
99
use File::Temp qw/tempfile/;
1010

1111
BEGIN {
12-
my $coretests = File::Spec->catpath(
13-
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
12+
my $coretests = File::Spec->rel2abs(
13+
File::Spec->catpath(
14+
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
15+
)
1416
);
1517
require $coretests;
1618
use_ok("version", 0.9917);

t/03require.t

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ use Test::More qw/no_plan/;
88
use File::Spec;
99

1010
BEGIN {
11-
my $coretests = File::Spec->catpath(
12-
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
11+
my $coretests = File::Spec->rel2abs(
12+
File::Spec->catpath(
13+
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
14+
)
1315
);
1416
require $coretests;
1517
}

0 commit comments

Comments
 (0)