bookstore/test/controllers/users_controller_test.rb
2021-03-20 14:23:06 +01:00

13 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