~cytrogen/masto-fe

ref: 63a39ae2faba65d0234a9f9e261e31dbf4bd5adb masto-fe/spec/controllers/custom_css_controller_spec.rb -rw-r--r-- 244 bytes
63a39ae2 — Claire Run `yarn manage:translations` 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require 'rails_helper'

describe CustomCssController do
  render_views

  describe 'GET #show' do
    it 'returns http success' do
      get :show
      expect(response).to have_http_status(200)
    end
  end
end