Add basic coverage for `TagSearchService` class (#29319)

essem/emoji-reactions-plus-upstream
Matt Jankowski 2 months ago committed by GitHub
parent 96013cd576
commit 19f0590795
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,21 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe TagSearchService do
describe '#call' do
let!(:one) { Fabricate(:tag, name: 'one') }
before { Fabricate(:tag, name: 'two') }
it 'runs a search for tags' do
results = subject.call('#one', limit: 5)
expect(results)
.to have_attributes(
size: 1,
first: eq(one)
)
end
end
end
Loading…
Cancel
Save