]> git.openstreetmap.org Git - rails.git/commitdiff
Add a blank richtext description method
authorAnton Khorev <tony29@yandex.ru>
Wed, 7 Aug 2024 02:27:28 +0000 (05:27 +0300)
committerAnton Khorev <tony29@yandex.ru>
Wed, 7 Aug 2024 05:01:14 +0000 (08:01 +0300)
lib/rich_text.rb
test/lib/rich_text_test.rb

index a439342f7743f9b1fb8682147f6562a9ff0750ab..f554e5ab59d665a6b48332dab22b8e12d2ae115e 100644 (file)
@@ -57,6 +57,10 @@ module RichText
       nil
     end
 
+    def description
+      nil
+    end
+
     protected
 
     def simple_format(text)
index e0b31527669d5f1d8583cdfbe65c483d58a6ec58..3e17cac7b6303232f000c8c55e23749dcd7f3811 100644 (file)
@@ -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)