trabajo-afectivo/spec/requests/cors_preflight_check_spec.rb
2022-01-01 14:38:12 +01:00

27 lines
577 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
require 'rails_helper'
RSpec.describe 'CORS Preflight Check', type: :request do
shared_examples 'empty response' do
it { expect(response).to have_http_status(:ok) }
it { expect(response.body).to be_empty }
end
context 'valid route' do
before do
process :options, '/'
end
include_examples 'empty response'
end
context 'invalid route' do
before do
process :options, '/this_is_an_invalid_route'
end
include_examples 'empty response'
end
end