mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-07 13:53:37 +01:00
14 lines
237 B
Ruby
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
|