Add lib path to range.t

Some users have picked up on failing tests due to "use lib" not being set
in the range.t test file
This commit is contained in:
Duncan Ferguson 2020-04-21 08:25:55 +01:00
parent 276cab7014
commit 4674b20fb9
2 changed files with 4 additions and 0 deletions

View file

@ -4,6 +4,7 @@ Revision history for {{$dist->name}}
- Include all utilies within each man page
- Add in 'command_pre' and 'command_post' configuration options
- Fix 'Add Host' menu error finding 'resolved_names'
- Ensure lib path is added to range tests to find the libraries
4.14 2019-08-21 Duncan Ferguson <duncan_ferguson@user.sf.net>
- Include README within the repository, not just created tar.gz files

View file

@ -2,6 +2,9 @@
use strict;
use warnings;
use FindBin qw($Bin);
use lib "$Bin/../lib";
use Test::More;
use Test::Trap;
use Data::Dump;