Retrospring/test/controllers/user_controller_test.rb

15 lines
237 B
Ruby
Raw Normal View History

2014-11-02 08:57:37 -08:00
require 'test_helper'
class UserControllerTest < ActionController::TestCase
test "should get show" do
get :show
assert_response :success
end
test "should get edit" do
get :edit
assert_response :success
end
end