mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
16 lines
251 B
Ruby
16 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
|