Commit c008814fd43c1be3228cf7c21459c1d435fdb205

Authored by Antonio Terceiro
1 parent f8e8c607

Fix new plugin tests

plugins/google_cse/test/functional/google_cse_plugin_environment_controller_test.rb
... ... @@ -4,7 +4,7 @@ require File.dirname(__FILE__) + '/../../controllers/google_cse_plugin_environme
4 4 # Re-raise errors caught by the controller.
5 5 class GoogleCsePluginEnvironmentController; def rescue_action(e) raise e end; end
6 6  
7   -class GoogleCsePluginEnvironmentControllerTest < Test::Unit::TestCase
  7 +class GoogleCsePluginEnvironmentControllerTest < ActionController::TestCase
8 8  
9 9 def setup
10 10 @controller = GoogleCsePluginEnvironmentController.new
... ...
plugins/google_cse/test/unit/google_cse_plugin_test.rb
1 1 require File.dirname(__FILE__) + '/../../../../test/test_helper'
2 2  
3   -class GoogleCsePluginTest < Test::Unit::TestCase
  3 +class GoogleCsePluginTest < ActiveSupport::TestCase
4 4  
5 5 def setup
6 6 @plugin = GoogleCsePlugin.new
... ...