projects
/
p5sagit/Devel-Declare.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
393b159
)
avoid relying on . being in @INC
Karen Etheridge [Thu, 28 Jul 2016 20:13:03 +0000 (13:13 -0700)]
t/early1.t
patch
|
blob
|
blame
|
history
t/early1_x.pm
patch
|
blob
|
blame
|
history
diff --git
a/t/early1.t
b/t/early1.t
index
7bd08c4
..
bf4bda7
100644
(file)
--- a/
t/early1.t
+++ b/
t/early1.t
@@
-1,5
+1,6
@@
use strict;
use warnings;
use Test::More tests => 1;
-use t::early1_x;
+use lib 't';
+use early1_x;
class {};
diff --git
a/t/early1_x.pm
b/t/early1_x.pm
index
12fb55f
..
5aea017
100644
(file)
--- a/
t/early1_x.pm
+++ b/
t/early1_x.pm
@@
-1,4
+1,4
@@
-package t::early1_x;
+package early1_x;
use strict;
use warnings;
sub import {