houdini/spec/lib/format/name_spec.rb
2021-04-23 12:59:42 -05:00

18 lines
568 B
Ruby

# frozen_string_literal: true
# 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
before(:each) do
Houdini.hoster.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')
expect(result).to eq('"Test X Y" <support@email.com>')
end
end
end