Welcome to mirror list, hosted at ThFree Co, Russian Federation.

base_service_spec.rb « award_emojis « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0c8fd39ad92b47c03d4cff5a842cd074a28314f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe AwardEmojis::BaseService do
  let(:awardable) { build(:note) }
  let(:current_user) { build(:user) }

  describe '.initialize' do
    subject { described_class }

    it 'uses same emoji name if not an alias' do
      emoji_name = 'horse'

      expect(subject.new(awardable, emoji_name, current_user).name).to eq(emoji_name)
    end

    it 'uses emoji original name if its an alias' do
      emoji_alias = 'small_airplane'
      emoji_name = 'airplane_small'

      expect(subject.new(awardable, emoji_alias, current_user).name).to eq(emoji_name)
    end
  end
end