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