logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

manifests_controller_spec.rb (256B)


  1. require 'rails_helper'
  2. describe ManifestsController do
  3. render_views
  4. describe 'GET #show' do
  5. before do
  6. get :show, format: :json
  7. end
  8. it 'returns http success' do
  9. expect(response).to have_http_status(:success)
  10. end
  11. end
  12. end