2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-28 13:56:58 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe EmojisController do
|
|
|
|
render_views
|
|
|
|
|
2023-12-14 10:29:10 +00:00
|
|
|
let(:emoji) { Fabricate(:custom_emoji, shortcode: 'coolcat') }
|
2018-05-28 13:56:58 +00:00
|
|
|
|
|
|
|
describe 'GET #show' do
|
2023-05-04 03:48:35 +00:00
|
|
|
let(:response) { get :show, params: { id: emoji.id, format: :json } }
|
|
|
|
|
2018-05-28 13:56:58 +00:00
|
|
|
it 'returns the right response' do
|
2018-09-13 22:53:09 +00:00
|
|
|
expect(response).to have_http_status 200
|
2023-11-07 15:20:24 +00:00
|
|
|
expect(body_as_json[:name]).to eq ':coolcat:'
|
2018-05-28 13:56:58 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|