This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-05-28 06:56:58 -07:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe EmojisController do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
let(:emoji) { Fabricate(:custom_emoji) }
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2018-09-13 15:53:09 -07:00
|
|
|
subject(:response) { get :show, params: { id: emoji.id, format: :json } }
|
2018-05-28 06:56:58 -07:00
|
|
|
subject(:body) { JSON.parse(response.body, symbolize_names: true) }
|
|
|
|
|
|
|
|
it 'returns the right response' do
|
2018-09-13 15:53:09 -07:00
|
|
|
expect(response).to have_http_status 200
|
2018-05-28 06:56:58 -07:00
|
|
|
expect(body[:name]).to eq ':coolcat:'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|