mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 16:54:31 +00:00
20 lines
436 B
Ruby
20 lines
436 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe ActivityPub::ClaimsController do
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
describe 'POST #create' do
|
|
context 'without signature' do
|
|
before do
|
|
post :create, params: { account_username: account.username }, body: '{}'
|
|
end
|
|
|
|
it 'returns http not authorized' do
|
|
expect(response).to have_http_status(401)
|
|
end
|
|
end
|
|
end
|
|
end
|