2016-02-29 18:42:08 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AccountsController, type: :controller do
|
|
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2016-03-19 13:02:30 +00:00
|
|
|
it 'returns http success' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :show, params: { username: alice.username }
|
2016-02-29 18:42:08 +00:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
2016-03-19 13:02:30 +00:00
|
|
|
it 'returns http success with Atom' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :show, params: { username: alice.username }, format: 'atom'
|
2016-02-29 18:42:08 +00:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
2016-03-19 13:02:30 +00:00
|
|
|
|
|
|
|
describe 'GET #followers' do
|
|
|
|
it 'returns http success' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :followers, params: { username: alice.username }
|
2016-03-19 13:02:30 +00:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #following' do
|
|
|
|
it 'returns http success' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :following, params: { username: alice.username }
|
2016-03-19 13:02:30 +00:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|