diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-06-22 04:02:27 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-06-22 04:02:27 +0000 |
commit | 6208302840982e99929514dc5403119f8a487d56 (patch) | |
tree | 3a596155ddffe82f84d54e2156b479bf88d4122d /test | |
parent | 0df011ecee8c865860a084041d21a0b45696d383 (diff) | |
download | redmine-6208302840982e99929514dc5403119f8a487d56.tar.gz redmine-6208302840982e99929514dc5403119f8a487d56.zip |
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
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |