1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Author: Gunnar Wolf <gwolf@debian.org>
Forwarded: not-needed
Last-Update: 2013-05-23
Description: Explicitly declare 'test' in the tests' search path
Index: git/test/html2haml_test.rb
===================================================================
--- git.orig/test/html2haml_test.rb
+++ git/test/html2haml_test.rb
@@ -1,4 +1,5 @@
# encoding: UTF-8
+$: << './test'
require 'test_helper'
class Html2HamlTest < MiniTest::Unit::TestCase
Index: git/test/erb_test.rb
===================================================================
--- git.orig/test/erb_test.rb
+++ git/test/erb_test.rb
@@ -1,3 +1,4 @@
+$: << './test'
require 'test_helper'
class ErbTest < MiniTest::Unit::TestCase
|