* Add method to confirm rich text content existence by adding `?` after rich
text attribute.
```ruby
message = Message.create!(body: "
Funny times!
")
message.body? #=> true
```
*Kyohei Toyoda*
* The `fill_in_rich_text_area` system test helper locates a Trix editor
and fills it in with the given HTML.
```ruby
#
fill_in_rich_text_area "message_content", with: "Hello world!"
#
fill_in_rich_text_area "Your message here", with: "Hello world!"
#
fill_in_rich_text_area "Message content", with: "Hello world!"
#
#
fill_in_rich_text_area "message[content]", with: "Hello world!"
```
*George Claghorn*
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actiontext/CHANGELOG.md) for previous changes.