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

10 lines
263 B
Ruby

require "test_helper"
class BubbleTest < ActiveSupport::TestCase
test "searchable by title" do
bubble = buckets(:writebook).bubbles.create! title: "Insufficient haggis", creator: users(:kevin)
assert_includes Bubble.search("haggis"), bubble
end
end