1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: don't use require_relative for tests
This lets the system find the needed library in the correct place according to
LOAD_PATH and should fix autopkgtests
Author: Cédric Boutillier <boutil@debian.org>
Forwarded: no
Last-Update: 2016-06-05
--- a/test/helper.rb
+++ b/test/helper.rb
@@ -20,7 +20,7 @@
require 'minitest/autorun'
require 'minitest/reporters'
require 'rspec/mocks'
-require_relative "../lib/jekyll.rb"
+require "jekyll"
Jekyll.logger = Logger.new(StringIO.new)
|