Skip to content

Instantly share code, notes, and snippets.

@bithavoc
Created November 26, 2014 18:15
Show Gist options
  • Save bithavoc/dc2712f348c35d14b4aa to your computer and use it in GitHub Desktop.
Save bithavoc/dc2712f348c35d14b4aa to your computer and use it in GitHub Desktop.
require 'minitest_helper'
require 'action_controller'
class ControllerStuff < ActionController::Base
def create
local_activity.action("yay!")
end
end
class ControllerStuffTest < ActionController::TestCase
def test_create
get :index
#post(:create, book: { title: "Love Hina" })
assert_response :ok
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment