2022-02-09 05:54:02 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 21:27:38 -05:00
|
|
|
RSpec.describe TwitterApi do
|
2022-07-27 05:21:10 -05:00
|
|
|
describe ".link_handles_in" do
|
2022-02-09 05:54:02 -06:00
|
|
|
it "correctly replaces handles" do
|
|
|
|
expect(TwitterApi.send(:link_handles_in, "@foo @foobar")).to match_html <<~HTML
|
|
|
|
<a href='https://twitter.com/foo' target='_blank'>@foo</a> <a href='https://twitter.com/foobar' target='_blank'>@foobar</a>
|
|
|
|
HTML
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-27 05:21:10 -05:00
|
|
|
describe ".link_hashtags_in" do
|
2022-02-09 05:54:02 -06:00
|
|
|
it "correctly replaces hashtags" do
|
|
|
|
expect(TwitterApi.send(:link_hashtags_in, "#foo #foobar")).to match_html <<~HTML
|
|
|
|
<a href='https://twitter.com/search?q=%23foo' target='_blank'>#foo</a> <a href='https://twitter.com/search?q=%23foobar' target='_blank'>#foobar</a>
|
|
|
|
HTML
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|