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

15 lines
239 B
Ruby

require 'test_helper'
class UserControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
test "should get show" do
get :show
assert_response :success
end
end