mirror of https://github.com/mastodon/mastodon
Convert "custom css" controller spec to request spec (#31595)
This commit is contained in:
parent
641ae6a2cf
commit
36ccdcc9e1
|
@ -1,19 +0,0 @@
|
||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
require 'rails_helper'
|
|
||||||
|
|
||||||
describe CustomCssController do
|
|
||||||
render_views
|
|
||||||
|
|
||||||
describe 'GET #show' do
|
|
||||||
before do
|
|
||||||
get :show
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'returns http success' do
|
|
||||||
expect(response).to have_http_status(200)
|
|
||||||
end
|
|
||||||
|
|
||||||
it_behaves_like 'cacheable response'
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
describe 'Custom stylesheets' do
|
||||||
|
describe 'GET /custom.css' do
|
||||||
|
before { get '/custom.css' }
|
||||||
|
|
||||||
|
it 'returns http success' do
|
||||||
|
expect(response)
|
||||||
|
.to have_http_status(200)
|
||||||
|
.and have_attributes(
|
||||||
|
content_type: match('text/css')
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
it_behaves_like 'cacheable response'
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue