27 lines
482 B
Ruby
27 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
|