Remove the deprecated archive endpoint controller rspec test

This commit is contained in:
Luka Murn 2019-08-21 16:00:04 +02:00
parent 084cdcdd6b
commit 9ad2490285

View file

@ -90,18 +90,6 @@ describe ProjectsController, type: :controller do
end
end
describe '#archive' do
context 'in JSON format' do
let(:params) { { team: team.id, sort: 'atoz' } }
it 'returns success response' do
get :archive, params: params, format: :json
expect(response).to have_http_status(:success)
expect(response.content_type).to eq 'application/json'
end
end
end
describe 'POST create' do
context 'in JSON format' do
let(:params) do