From 1642c1cdef8a00e77bc0d031244bf4dc349176c7 Mon Sep 17 00:00:00 2001
From: Niko Tyni <ntyni@debian.org>
Date: Sat, 17 Sep 2016 11:24:01 +0300
Subject: [PATCH] Make t/all.t work when cwd is not in @INC

Bug-Debian: https://bugs.debian.org/837129
---
 t/all.t | 1 +
 1 file changed, 1 insertion(+)

diff --git a/t/all.t b/t/all.t
index e80e8eb..391a617 100644
--- a/t/all.t
+++ b/t/all.t
@@ -65,6 +65,7 @@ use Test::More tests => 292;
 BEGIN {
     chdir 't' if -d 't';
     unshift @INC, '../lib';
+    unshift @INC, '.';
 }
 
 $| = 1;
-- 
2.9.3

