1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/spec/controllers/manifests_controller_spec.rb
2018-04-21 21:35:07 +02:00

15 lines
251 B
Ruby

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(200)
end
end
end