]> git.openstreetmap.org Git - rails.git/blobdiff - test/lib/rich_text_test.rb
Strip away class attributes from sanitized outputs
[rails.git] / test / lib / rich_text_test.rb
index e287f03f5fe5a540d401d30aacda65cc6bc70022..5b590bc3e41ae1a60253884ff1154622af7c436e 100644 (file)
@@ -52,6 +52,12 @@ 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
   end
 
   def test_html_to_text
@@ -155,6 +161,13 @@ 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}")
+    # raise r.to_html
+    assert_html r do
+      assert_select "p[class='btn btn-warning']", false
+      assert_select "p", /^Click Me$/
+    end
   end
 
   def test_markdown_to_text