retrospring/test/controllers/user_controller_test.rb
2014-11-02 17:57:37 +01:00

14 lines
237 B
Ruby

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