Skip to content

Instantly share code, notes, and snippets.

@terlar
Last active April 29, 2016 14:07
Show Gist options
  • Save terlar/688bb253f78c8f1678d97efaa5f58df7 to your computer and use it in GitHub Desktop.
Save terlar/688bb253f78c8f1678d97efaa5f58df7 to your computer and use it in GitHub Desktop.

Run controller action

Example 1:

c = IndexController.new
c.params = { utf8: '✓', test: 'param' }
c.action

Example 2:

email_controller = FriendEmailsController.new
email_controller.params = {:utf8=>"✓", :authenticity_token=>"1wt9btLlqcvxLY1HKiz/RU0xyv66Een4BzFle9lfcsY=", :friend_email=>{:name=>"Terje Larsen", :from=>"[email protected]", :to=>"[email protected]", :body=>"Lorem ipsum dolor sit amet."}, :ad_id=>"4ec29d2b290ca9306a00056a"}
email_controller.create
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment