diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-06-22 04:01:45 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-06-22 04:01:45 +0000 |
commit | 0df011ecee8c865860a084041d21a0b45696d383 (patch) | |
tree | 3195c401036e497ff5bc7504bb8add19b4ae7b76 /test | |
parent | 4bc0f9a04aa0af2dcf7bb677112a2ec9d1e01ab1 (diff) | |
download | redmine-0df011ecee8c865860a084041d21a0b45696d383.tar.gz redmine-0df011ecee8c865860a084041d21a0b45696d383.zip |
use ActionView::TestCase instead of HelperTestCase at test/unit/lib/redmine/wiki_formatting/macros_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@6115 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/lib/redmine/wiki_formatting/macros_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/lib/redmine/wiki_formatting/macros_test.rb b/test/unit/lib/redmine/wiki_formatting/macros_test.rb index 238e5a7ae..c9fe522ae 100644 --- a/test/unit/lib/redmine/wiki_formatting/macros_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/macros_test.rb @@ -17,7 +17,7 @@ require File.expand_path('../../../../../test_helper', __FILE__) -class Redmine::WikiFormatting::MacrosTest < HelperTestCase +class Redmine::WikiFormatting::MacrosTest < ActionView::TestCase include ApplicationHelper include ActionView::Helpers::TextHelper include ActionView::Helpers::SanitizeHelper |