Created
November 26, 2014 18:15
-
-
Save bithavoc/dc2712f348c35d14b4aa to your computer and use it in GitHub Desktop.
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
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