mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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
|