mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
DEV: Apply syntax_tree formatting to spec/*
This commit is contained in:
@ -1,16 +1,16 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe TwitterApi do
|
||||
describe '.link_handles_in' do
|
||||
it 'correctly replaces handles' do
|
||||
describe ".link_handles_in" do
|
||||
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
|
||||
|
||||
describe '.link_hashtags_in' do
|
||||
it 'correctly replaces hashtags' do
|
||||
describe ".link_hashtags_in" do
|
||||
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
|
||||
|
Reference in New Issue
Block a user