mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-09 16:35:48 +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
|