about summary refs log tree commit diff
path: root/spec/services/search_service_spec.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-05-14 23:37:37 +0200
committerGitHub <noreply@github.com>2020-05-14 23:37:37 +0200
commit27ea7c13a554d41c4bd83a2712b711d2ef55629c (patch)
treeaa95b848b028d69fbb77a4e7233857096feada8d /spec/services/search_service_spec.rb
parent71fce71c94b1e94ae3a7af17bfc141709b61c428 (diff)
Fix hashtag search performing account search as well (#13758)
Diffstat (limited to 'spec/services/search_service_spec.rb')
-rw-r--r--spec/services/search_service_spec.rb8
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