application_controller_test.rb
705 Bytes
require File.dirname(__FILE__) + '/../test_helper'
require 'test_controller'
# Re-raise errors caught by the controller.
class TestController; def rescue_action(e) raise e end; end
class ApplicationControllerTest < Test::Unit::TestCase
fixtures :profiles, :virtual_communities, :domains
def setup
@controller = TestController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
end
def test_get_against_post_only
get :post_only
assert_redirected_to :action => 'index'
end
def test_post_against_post_only
post :post_only
assert_response :success
assert_tag :tag => 'span', :content => 'post_only'
end
end