From: Anton Khorev Date: Tue, 25 Mar 2025 02:36:00 +0000 (+0300) Subject: Split RichText text-to-html test X-Git-Tag: live~11^2~1 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/4aceca44f976f4c30ad074752b7f426703e64d5c Split RichText text-to-html test --- diff --git a/test/lib/rich_text_test.rb b/test/lib/rich_text_test.rb index 63c70b099..d454c4728 100644 --- a/test/lib/rich_text_test.rb +++ b/test/lib/rich_text_test.rb @@ -221,19 +221,23 @@ class RichTextTest < ActiveSupport::TestCase assert_equal 50, r.spam_score.round end - def test_text_to_html + def test_text_to_html_linkify r = RichText.new("text", "foo http://example.com/ bar") assert_html r do assert_select "a", 1 assert_select "a[href='http://example.com/']", 1 assert_select "a[rel='nofollow noopener noreferrer']", 1 end + end + def test_text_to_html_email r = RichText.new("text", "foo example@example.com bar") assert_html r do assert_select "a", 0 end + end + def test_text_to_html_escape r = RichText.new("text", "foo < bar & baz > qux") assert_html r do assert_select "p", "foo < bar & baz > qux"