From 6208302840982e99929514dc5403119f8a487d56 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Wed, 22 Jun 2011 04:02:27 +0000 Subject: [PATCH] use ActionView::TestCase instead of HelperTestCase at test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb. ActionView::Helpers::ActiveRecordHelper at test/helper_testcase.rb does not exist on Rails 3.0. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6116 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb index fa5f8adb4..7314d4880 100644 --- a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb @@ -17,7 +17,7 @@ require File.expand_path('../../../../../test_helper', __FILE__) -class Redmine::WikiFormatting::TextileFormatterTest < HelperTestCase +class Redmine::WikiFormatting::TextileFormatterTest < ActionView::TestCase def setup @formatter = Redmine::WikiFormatting::Textile::Formatter -- 2.39.5