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