houdini/spec/lib/format/name_spec.rb

19 lines
561 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-06-12 20:03:43 +00:00
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
require 'spec_helper'
require 'format/name'
describe Format::Name do
describe '.email_from_np' do
2020-06-10 22:31:47 +00:00
before(:each) do
Houdini.support_email = 'support@email.com'
end
it 'gives the name, minus commas, with our email in brackets' do
result = Format::Name.email_from_np('Test, X, Y')
2020-06-10 22:31:47 +00:00
expect(result).to eq('"Test X Y" <support@email.com>')
end
end
end