mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-22 14:15:22 +00:00
Convert emojis
controller spec to request spec (#31597)
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
5172d84946
commit
dbe0ee8a81
|
@ -1,18 +0,0 @@
|
||||||
# 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
|
|
21
spec/requests/emojis_spec.rb
Normal file
21
spec/requests/emojis_spec.rb
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
describe 'Emojis' do
|
||||||
|
describe 'GET /emojis/:id' do
|
||||||
|
let(:emoji) { Fabricate(:custom_emoji, shortcode: 'coolcat') }
|
||||||
|
|
||||||
|
it 'returns http success with correct json' do
|
||||||
|
get "/emojis/#{emoji.id}"
|
||||||
|
|
||||||
|
expect(response)
|
||||||
|
.to have_http_status(200)
|
||||||
|
expect(body_as_json)
|
||||||
|
.to include(
|
||||||
|
name: ':coolcat:',
|
||||||
|
type: 'Emoji'
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue