RBOnRails-learning/test/controllers/users_controller_test.rb

14 lines
262 B
Ruby
Raw Permalink Normal View History

2024-08-08 09:19:44 +00:00
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