Created
January 20, 2014 11:06
-
-
Save bogdanRada/8518332 to your computer and use it in GitHub Desktop.
mountable engine Rspec controller test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ControllerHacks | |
def get(action, parameters = nil, session = nil, flash = nil) | |
process_action(action, parameters, session, flash, "GET") | |
end | |
# Executes a request simulating POST HTTP method and set/volley the response | |
def post(action, parameters = nil, session = nil, flash = nil) | |
process_action(action, parameters, session, flash, "POST") | |
end | |
# Executes a request simulating PUT HTTP method and set/volley the response | |
def put(action, parameters = nil, session = nil, flash = nil) | |
process_action(action, parameters, session, flash, "PUT") | |
end | |
# Executes a request simulating DELETE HTTP method and set/volley the response | |
def delete(action, parameters = nil, session = nil, flash = nil) | |
process_action(action, parameters, session, flash, "DELETE") | |
end | |
private | |
def process_action(action, parameters = nil, session = nil, flash = nil, method = "GET") | |
parameters ||= {} | |
process(action, parameters.merge!(:use_route => :my_engine), session, flash, method) | |
end | |
end | |
RSpec.configure do |c| | |
c.include ControllerHacks, :type => :controller | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment