Add a test for emojis_controller (#7652)

This commit is contained in:
Shuhei Kitagawa 2018-05-28 22:56:58 +09:00 committed by Yamagishi Kazutoshi
parent b87a1229c7
commit b0b34a5e38
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
require 'rails_helper'
describe EmojisController do
render_views
let(:emoji) { Fabricate(:custom_emoji) }
describe 'GET #show' do
subject(:responce) { get :show, params: { id: emoji.id, format: :json } }
subject(:body) { JSON.parse(response.body, symbolize_names: true) }
it 'returns the right response' do
expect(responce).to have_http_status 200
expect(body[:name]).to eq ':coolcat:'
end
end
end