Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/spec/controllers/manifests_controller_spec.rb
2017-06-30 13:43:34 +02:00

19 lines
380 B
Ruby

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