diff options
author | ThibG <thib@sitedethib.com> | 2020-05-14 23:37:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-14 23:37:37 +0200 |
commit | 27ea7c13a554d41c4bd83a2712b711d2ef55629c (patch) | |
tree | aa95b848b028d69fbb77a4e7233857096feada8d /spec | |
parent | 71fce71c94b1e94ae3a7af17bfc141709b61c428 (diff) |
Fix hashtag search performing account search as well (#13758)
Diffstat (limited to 'spec')
-rw-r--r-- | spec/services/search_service_spec.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/services/search_service_spec.rb b/spec/services/search_service_spec.rb index 739bb9cf5..5b52662ba 100644 --- a/spec/services/search_service_spec.rb +++ b/spec/services/search_service_spec.rb @@ -91,6 +91,14 @@ describe SearchService, type: :service do expect(Tag).not_to have_received(:search_for) expect(results).to eq empty_results end + it 'does not include account when starts with # character' do + query = '#tag' + allow(AccountSearchService).to receive(:new) + + results = subject.call(query, nil, 10) + expect(AccountSearchService).to_not have_received(:new) + expect(results).to eq empty_results + end end end end |