aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/test
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2019-07-07 22:03:06 -0400
committerGeorge Claghorn <george@basecamp.com>2019-07-07 22:03:06 -0400
commit930402101c09726ee9d9855cb303f2a8e7d7ab6c (patch)
tree4ebef2d1a6b4b460c7e46032ba773c5909448a46 /actiontext/test
parent7d699dad334996838dd529e4b75e1648692d56f8 (diff)
downloadrails-930402101c09726ee9d9855cb303f2a8e7d7ab6c.tar.gz
rails-930402101c09726ee9d9855cb303f2a8e7d7ab6c.tar.bz2
rails-930402101c09726ee9d9855cb303f2a8e7d7ab6c.zip
Implement ActiveStorage::Blob#attachable_plain_text_representation
Fixes that file attachments without captions would not be represented in plain text generated from rich-text content, causing ActionText::RichText#present? to return false. Closes #36607.
Diffstat (limited to 'actiontext/test')
-rw-r--r--actiontext/test/unit/attachment_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actiontext/test/unit/attachment_test.rb b/actiontext/test/unit/attachment_test.rb
index 026078dcec..54831a0271 100644
--- a/actiontext/test/unit/attachment_test.rb
+++ b/actiontext/test/unit/attachment_test.rb
@@ -50,6 +50,11 @@ class ActionText::AttachmentTest < ActiveSupport::TestCase
assert_not_nil trix_attachment.attributes["content"]
end
+ test "converts to plain text" do
+ assert_equal "[Vroom vroom]", ActionText::Attachment.from_attachable(attachable, caption: "Vroom vroom").to_plain_text
+ assert_equal "[racecar.jpg]", ActionText::Attachment.from_attachable(attachable).to_plain_text
+ end
+
test "defaults trix partial to model partial" do
attachable = Page.create! title: "Homepage"
assert_equal "pages/page", attachable.to_trix_content_attachment_partial_path