2016-03-07 12:42:33 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Api::StatusesController, type: :controller do
|
2016-03-19 12:13:47 +01:00
|
|
|
describe 'GET #show' do
|
|
|
|
it 'returns http success'
|
|
|
|
end
|
2016-03-07 12:42:33 +01:00
|
|
|
|
2016-03-19 12:13:47 +01:00
|
|
|
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
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|