mirror of
https://github.com/mastodon/mastodon.git
synced 2026-02-26 23:28:31 +00:00
14 lines
321 B
Ruby
14 lines
321 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.shared_examples 'forbidden for unconfirmed provider' do
|
|
context 'when the requesting provider is unconfirmed' do
|
|
let(:provider) { Fabricate(:fasp_provider) }
|
|
|
|
it 'returns http unauthorized' do
|
|
subject
|
|
|
|
expect(response).to have_http_status(401)
|
|
end
|
|
end
|
|
end
|