From 1c8208242c6a7466aa82d34e329eb7bf8b24e046 Mon Sep 17 00:00:00 2001 From: Amir Masoud Abdol Date: Tue, 12 Jul 2022 19:44:36 +0200 Subject: [PATCH] updated the tests for `twitter:description` --- spec/jekyll_seo_tag_integration_spec.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spec/jekyll_seo_tag_integration_spec.rb b/spec/jekyll_seo_tag_integration_spec.rb index d7e934e..f7b1cb8 100755 --- a/spec/jekyll_seo_tag_integration_spec.rb +++ b/spec/jekyll_seo_tag_integration_spec.rb @@ -124,6 +124,7 @@ RSpec.describe Jekyll::SeoTag do it "uses the page description" do expect(output).to match(%r!!) expect(output).to match(%r!!) + expect(output).to match(%r!!) end end @@ -133,6 +134,7 @@ RSpec.describe Jekyll::SeoTag do it "uses the page excerpt when no page description exists" do expect(output).to match(%r!!) expect(output).to match(%r!!) + expect(output).to match(%r!!) end end @@ -142,6 +144,7 @@ RSpec.describe Jekyll::SeoTag do it "uses the site description when no page description nor excerpt exist" do expect(output).to match(%r!!) expect(output).to match(%r!!) + expect(output).to match(%r!!) end end