2019-11-26 07:06:18 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 05:08:32 -04:00
|
|
|
RSpec.describe ServicesHelper do
|
2019-11-26 07:06:18 -05:00
|
|
|
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
|