RBOnRails-learning/test/controllers/users_controller_test.rb

14 lines
262 B
Ruby

require "test_helper"
class UsersControllerTest < ActionDispatch::IntegrationTest
test "should get new" do
get users_new_url
assert_response :success
end
test "should get create" do
get users_create_url
assert_response :success
end
end