14 lines
236 B
Ruby
14 lines
236 B
Ruby
require 'test_helper'
|
|
|
|
class UsersControllerTest < ActionController::TestCase
|
|
test "should get new" do
|
|
get :new
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get show" do
|
|
get :show
|
|
assert_response :success
|
|
end
|
|
|
|
end
|