Run Travis tests with PERL_USE_UNSAFE_INC=0

This makes sure that Test::Harness doesn't set PERL_USE_UNSAFE_INC to 1
and that the tests are actually run without . in @INC.
diff --git a/devel/bin/travis-test.sh b/devel/bin/travis-test.sh
index 78750eb..c33095c 100755
--- a/devel/bin/travis-test.sh
+++ b/devel/bin/travis-test.sh
@@ -35,6 +35,9 @@
 }
 
 test_perl() {
+    # Test::Harness defaults to PERL_USE_UNSAFE_INC=1
+    export PERL_USE_UNSAFE_INC=0
+
     source ~/perl5/perlbrew/etc/bashrc
     perlbrew list
     perlbrew switch $PERL_VERSION ||