Files
fizzy/test/models/comment_test.rb
T
2024-10-02 13:51:12 +01:00

10 lines
284 B
Ruby

require "test_helper"
class CommentTest < ActiveSupport::TestCase
test "searchable by body" do
comment = bubbles(:logo).comments.create! body: "I'd prefer something more rustic", creator: users(:kevin)
assert_includes Comment.search("something rustic"), comment
end
end