gitlab-org--gitlab-foss/spec/helpers/services_helper_spec.rb

11 lines
260 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe ServicesHelper do
describe 'event_action_title' do
it { expect(event_action_title('comment')).to eq 'Comment' }
it { expect(event_action_title('something')).to eq 'Something' }
end
end