1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/spec/requests/staff/telegram_chats/index_spec.rb

45 lines
990 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'GET /staff/telegram_chats' do
before do
sign_in current_account.user if current_account&.user
create_list :telegram_chat, 5
get '/staff/telegram_chats'
end
context 'when no account is authenticated' do
let(:current_account) { nil }
specify do
expect(response).to have_http_status :unauthorized
end
end
context 'when guest account is authenticated' do
let(:current_account) { create :guest_account }
specify do
expect(response).to have_http_status :unauthorized
end
end
context 'when usual account is authenticated' do
let(:current_account) { create :usual_account }
specify do
expect(response).to have_http_status :unauthorized
end
end
context 'when superuser account is authenticated' do
let(:current_account) { create :superuser_account }
specify do
expect(response).to have_http_status :ok
end
end
end