search for: taskcontrollertest

Displaying 1 result from an estimated 1 matches for "taskcontrollertest".

2009 Jun 16
1
[PATCH server] Fix errors in controller tests.
...rb index 3b90756..a2a6393 100644 --- a/src/test/functional/task_controller_test.rb +++ b/src/test/functional/task_controller_test.rb @@ -23,7 +23,7 @@ require 'task_controller' # Re-raise errors caught by the controller. class TaskController; def rescue_action(e) raise e end; end -class TaskControllerTest < Test::Unit::TestCase +class TaskControllerTest < ActionController::TestCase fixtures :tasks, :vms, :pools def setup diff --git a/src/test/functional/vm_controller_test.rb b/src/test/functional/vm_controller_test.rb index a059c50..1271851 100644 --- a/src/test/functional/vm_controlle...