]> source.dussan.org Git - redmine.git/commitdiff
use ActiveSupport::TestCase instead of HelperTestCase at test/unit/lib/redmine/views...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 22 Jun 2011 03:49:53 +0000 (03:49 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 22 Jun 2011 03:49:53 +0000 (03:49 +0000)
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@6108 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/lib/redmine/views/builders/json_test.rb

index 1be392d6361830a08f472094872b87e85e376ad7..8550a506bb3021921349817edd985cbcce45b660 100644 (file)
@@ -17,7 +17,7 @@
 
 require File.expand_path('../../../../../../test_helper', __FILE__)
 
-class Redmine::Views::Builders::JsonTest < HelperTestCase
+class Redmine::Views::Builders::JsonTest < ActiveSupport::TestCase
   
   def test_hash
     assert_json_output({'person' => {'name' => 'Ryan', 'age' => 32}}) do |b|