X-Git-Url: http://git.ieval.ro/?p=gruntmaster-daemon.git;a=blobdiff_plain;f=t%2F00-compile.t;h=eaa82ca1990d3a73c06d5d4dfc03748103b5433e;hp=28dd755759f69d7a1f82dcaf9a5d656bc8b56ab7;hb=7aa03ec19ba9d88c2c22ab5d678c159bcc18e48f;hpb=ecc543574d5a3f9551e9a45994b4413d7b9cdbbf diff --git a/t/00-compile.t b/t/00-compile.t index 28dd755..eaa82ca 100644 --- a/t/00-compile.t +++ b/t/00-compile.t @@ -1,7 +1,11 @@ -#!/usr/bin/perl -w use v5.14; use strict; use warnings; +use FindBin; + use Test::More tests => 1; -BEGIN { use_ok('Gruntmaster::Daemon') }; +BEGIN { + $ENV{PATH} = "$FindBin::Bin/../blib/script:" . $ENV{PATH}; + use_ok('Gruntmaster::Daemon') +};