# frozen_string_literal: true
describe TwitterApi do
context '.link_handles_in' do
it 'correctly replaces handles' do
expect(TwitterApi.send(:link_handles_in, "@foo @foobar")).to match_html <<~HTML
@foo @foobar
HTML
end
end
context '.link_hashtags_in' do
it 'correctly replaces hashtags' do
expect(TwitterApi.send(:link_hashtags_in, "#foo #foobar")).to match_html <<~HTML
#foo #foobar
HTML
end
end
end