10 lines
266 B
Ruby
10 lines
266 B
Ruby
# 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
|