/test/functional/search_controller_test.rb
https://github.com/ischroedi/petracommunity · Ruby · 18 lines · 13 code · 3 blank · 2 comment · 0 complexity · 5b60dfee6e03297d122b9531485fe9da MD5 · raw file
- require File.dirname(__FILE__) + '/../test_helper'
- require 'search_controller'
- # Re-raise errors caught by the controller.
- class SearchController; def rescue_action(e) raise e end; end
- class SearchControllerTest < Test::Unit::TestCase
- def setup
- @controller = SearchController.new
- @request = ActionController::TestRequest.new
- @response = ActionController::TestResponse.new
- end
- # Replace this with your real tests.
- def test_truth
- assert true
- end
- end