# frozen_string_literal: true require 'spec_helper' RSpec.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