require "test_helper"

class UserRegisterTest < ActionDispatch::IntegrationTest
  test "can see the sign up page" do
    get sign_up_path
    assert_select 'form[action=?][method="post"]', sign_up_path, true
    assert_response :success
  end
end
