summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorMatt Jankowski <matt@jankowski.online>2023-07-26 03:44:51 -0400
committerGitHub <noreply@github.com>2023-07-26 09:44:51 +0200
commit7d62e3b198f3a668acc66cc7659859b3b188d108 (patch)
treea8e3e4921fc7ab1c1aa2624ea14ac0255ae452dd /spec
parenta4b69bec2eab61f2c3dcebddfe1474be386f828e (diff)
Reformat large text arg in `FetchLinkCardService` spec (#26183)
Diffstat (limited to 'spec')
-rw-r--r--spec/services/fetch_link_card_service_spec.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/spec/services/fetch_link_card_service_spec.rb b/spec/services/fetch_link_card_service_spec.rb
index 133d6644107..eba38b69986 100644
--- a/spec/services/fetch_link_card_service_spec.rb
+++ b/spec/services/fetch_link_card_service_spec.rb
@@ -100,7 +100,14 @@ RSpec.describe FetchLinkCardService, type: :service do
end
context 'with a remote status' do
- let(:status) { Fabricate(:status, account: Fabricate(:account, domain: 'example.com'), text: 'Habt ihr ein paar gute Links zu <a>foo</a> #<span class="tag"><a href="https://quitter.se/tag/wannacry" target="_blank" rel="tag noopener noreferrer" title="https://quitter.se/tag/wannacry">Wannacry</a></span> herumfliegen? Ich will mal unter <br> <a href="https://github.com/qbi/WannaCry" target="_blank" rel="noopener noreferrer" title="https://github.com/qbi/WannaCry">https://github.com/qbi/WannaCry</a> was sammeln. !<a href="http://sn.jonkman.ca/group/416/id" target="_blank" rel="noopener noreferrer" title="http://sn.jonkman.ca/group/416/id">security</a>&nbsp;') }
+ let(:status) do
+ Fabricate(:status, account: Fabricate(:account, domain: 'example.com'), text: <<-TEXT)
+ Habt ihr ein paar gute Links zu <a>foo</a>
+ #<span class="tag"><a href="https://quitter.se/tag/wannacry" target="_blank" rel="tag noopener noreferrer" title="https://quitter.se/tag/wannacry">Wannacry</a></span> herumfliegen?
+ Ich will mal unter <br> <a href="https://github.com/qbi/WannaCry" target="_blank" rel="noopener noreferrer" title="https://github.com/qbi/WannaCry">https://github.com/qbi/WannaCry</a> was sammeln. !
+ <a href="http://sn.jonkman.ca/group/416/id" target="_blank" rel="noopener noreferrer" title="http://sn.jonkman.ca/group/416/id">security</a>&nbsp;
+ TEXT
+ end
it 'parses out URLs' do
expect(a_request(:get, 'https://github.com/qbi/WannaCry')).to have_been_made.at_least_once