15 lines
255 B
Ruby
15 lines
255 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'GET /join' do
|
|
before do
|
|
get '/join'
|
|
end
|
|
|
|
for_account_types nil, :guest, :usual, :superuser do
|
|
specify do
|
|
expect(response).to have_http_status :ok
|
|
end
|
|
end
|
|
end
|