You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
423 B
18 lines
423 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
describe EmojisController do |
|
render_views |
|
|
|
let(:emoji) { Fabricate(:custom_emoji, shortcode: 'coolcat') } |
|
|
|
describe 'GET #show' do |
|
let(:response) { get :show, params: { id: emoji.id, format: :json } } |
|
|
|
it 'returns the right response' do |
|
expect(response).to have_http_status 200 |
|
expect(body_as_json[:name]).to eq ':coolcat:' |
|
end |
|
end |
|
end
|
|
|