1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2024-12-31 20:45:20 +00:00
mastodon/spec/controllers/emojis_controller_spec.rb

19 lines
423 B
Ruby

# 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