mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-11 17:53:45 +00:00
28 lines
482 B
Ruby
28 lines
482 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Api::StatusesController, type: :controller do
|
|
describe 'GET #show' do
|
|
it 'returns http success'
|
|
end
|
|
|
|
describe 'GET #home' do
|
|
it 'returns http success'
|
|
end
|
|
|
|
describe 'GET #mentions' do
|
|
it 'returns http success'
|
|
end
|
|
|
|
describe 'POST #create' do
|
|
it 'returns http success'
|
|
end
|
|
|
|
describe 'POST #reblog' do
|
|
it 'returns http success'
|
|
end
|
|
|
|
describe 'POST #favourite' do
|
|
it 'returns http success'
|
|
end
|
|
end
|