mastodon/spec/controllers/api/v1/trends/statuses_controller_spec.rb

16 lines
263 B
Ruby
Raw Normal View History

2023-03-04 17:12:54 +01:00
# frozen_string_literal: true
require 'rails_helper'
describe Api::V1::Trends::StatusesController do
render_views
describe 'GET #index' do
it 'returns http success' do
get :index
expect(response).to have_http_status(200)
end
end
end