mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 05:53:14 -08:00
17 lines
282 B
Ruby
17 lines
282 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|