2016-02-29 18:42:08 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe StreamEntriesController, type: :controller do
|
|
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
let(:status) { Fabricate(:status, account: alice) }
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2016-03-19 13:02:30 +00:00
|
|
|
it 'returns http success with HTML' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :show, params: { account_username: alice.username, id: status.stream_entry.id }
|
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: { account_username: alice.username, id: status.stream_entry.id }, format: 'atom'
|
2016-02-29 18:42:08 +00:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|