Convert disputes/strikes spec controller->request/system (#34191)

This commit is contained in:
Matt Jankowski 2025-03-18 04:18:36 -04:00 committed by GitHub
parent 8ef546fe6b
commit 795d465f8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 49 additions and 32 deletions

View file

@ -1,32 +0,0 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Disputes::StrikesController do
render_views
before { sign_in current_user, scope: :user }
describe '#show' do
let(:current_user) { Fabricate(:user) }
let(:strike) { Fabricate(:account_warning, target_account: current_user.account) }
before do
get :show, params: { id: strike.id }
end
context 'when meant for the user' do
it 'returns http success' do
expect(response).to have_http_status(:success)
end
end
context 'when meant for a different user' do
let(:strike) { Fabricate(:account_warning) }
it 'returns http forbidden' do
expect(response).to have_http_status(403)
end
end
end
end