From: Anton Khorev <tony29@yandex.ru>
Date: Wed, 7 Aug 2024 02:27:28 +0000 (+0300)
Subject: Add a blank richtext description method
X-Git-Tag: live~984^2~8
X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/097a414b22a9068cd9af6ec758eb2876da3dd654

Add a blank richtext description method
---

diff --git a/lib/rich_text.rb b/lib/rich_text.rb
index a439342f7..f554e5ab5 100644
--- a/lib/rich_text.rb
+++ b/lib/rich_text.rb
@@ -57,6 +57,10 @@ module RichText
       nil
     end
 
+    def description
+      nil
+    end
+
     protected
 
     def simple_format(text)
diff --git a/test/lib/rich_text_test.rb b/test/lib/rich_text_test.rb
index e0b315276..3e17cac7b 100644
--- a/test/lib/rich_text_test.rb
+++ b/test/lib/rich_text_test.rb
@@ -250,16 +250,18 @@ class RichTextTest < ActiveSupport::TestCase
     assert_equal 141, r.spam_score.round
   end
 
-  def test_text_no_image
+  def test_text_no_opengraph_properties
     r = RichText.new("text", "foo https://example.com/ bar")
     assert_nil r.image
     assert_nil r.image_alt
+    assert_nil r.description
   end
 
-  def test_html_no_image
+  def test_html_no_opengraph_properties
     r = RichText.new("html", "foo <a href='https://example.com/'>bar</a> baz")
     assert_nil r.image
     assert_nil r.image_alt
+    assert_nil r.description
   end
 
   def test_markdown_no_image
@@ -328,6 +330,11 @@ class RichTextTest < ActiveSupport::TestCase
     assert_equal "have src", r.image_alt
   end
 
+  def test_markdown_no_description
+    r = RichText.new("markdown", "#Nope")
+    assert_nil r.description
+  end
+
   private
 
   def assert_html(richtext, &block)