]> git.openstreetmap.org Git - rails.git/blobdiff - test/lib/rich_text_test.rb
Merge remote-tracking branch 'upstream/pull/3348'
[rails.git] / test / lib / rich_text_test.rb
index e287f03f5fe5a540d401d30aacda65cc6bc70022..fc9355717565018f02612962663fbd7eb6c5cd4d 100644 (file)
@@ -52,6 +52,18 @@ class RichTextTest < ActiveSupport::TestCase
     assert_html r do
       assert_select "table[class='table table-sm w-auto']"
     end
+
+    r = RichText.new("html", "<p class='btn btn-warning'>Click Me</p>")
+    assert_html r do
+      assert_select "p[class='btn btn-warning']", false
+      assert_select "p", /^Click Me$/
+    end
+
+    r = RichText.new("html", "<p style='color:red'>Danger</p>")
+    assert_html r do
+      assert_select "p[style='color:red']", false
+      assert_select "p", /^Danger$/
+    end
   end
 
   def test_html_to_text
@@ -155,6 +167,18 @@ class RichTextTest < ActiveSupport::TestCase
     assert_html r do
       assert_select "table[class='table table-sm w-auto']"
     end
+
+    r = RichText.new("markdown", "Click Me\n{:.btn.btn-warning}")
+    assert_html r do
+      assert_select "p[class='btn btn-warning']", false
+      assert_select "p", /^Click Me$/
+    end
+
+    r = RichText.new("markdown", "<p style='color:red'>Danger</p>")
+    assert_html r do
+      assert_select "p[style='color:red']", false
+      assert_select "p", /^Danger$/
+    end
   end
 
   def test_markdown_to_text