mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
19 lines
309 B
Ruby
19 lines
309 B
Ruby
# 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
|