1
0
Fork 0
find-us-lunch/test/controllers/sessions_controller_test.rb

15 lines
251 B
Ruby
Raw Normal View History

2014-10-02 16:35:55 -04:00
require 'test_helper'
class SessionsControllerTest < ActionController::TestCase
test "should get create" do
get :create
assert_response :success
end
test "should get destroy" do
get :destroy
assert_response :success
end
end