From e781449c36fbc132f46e64a4456b5a520bd943c7 Mon Sep 17 00:00:00 2001 From: Dylan Thacker-Smith Date: Thu, 8 Oct 2020 01:53:11 -0400 Subject: [PATCH] Remove root directory from library search path for tests It isn't in the gemspec's require_path, so we shouldn't add any dependence on it. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index c8e78bf..889fc72 100755 --- a/Rakefile +++ b/Rakefile @@ -9,7 +9,7 @@ task(default: [:test, :rubocop]) desc('run test suite with default parser') Rake::TestTask.new(:base_test) do |t| - t.libs << '.' << 'lib' << 'test' + t.libs << 'lib' << 'test' t.test_files = FileList['test/{integration,unit}/**/*_test.rb'] t.verbose = false end