1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 23:26:42 +09:00
YuruToot/spec/controllers/manifests_controller_spec.rb

16 lines
256 B
Ruby
Raw Normal View History

require 'rails_helper'
describe ManifestsController do
render_views
describe 'GET #show' do
before do
get :show, format: :json
end
it 'returns http success' do
expect(response).to have_http_status(:success)
end
end
end