mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
15 lines
335 B
Ruby
15 lines
335 B
Ruby
require 'spec_helper'
|
|
|
|
describe SearchController do
|
|
|
|
it 'performs the query' do
|
|
Search.expects(:query).with('test', nil, 3)
|
|
xhr :get, :query, term: 'test'
|
|
end
|
|
|
|
it 'performs the query with a filter' do
|
|
Search.expects(:query).with('test', 'topic', 3)
|
|
xhr :get, :query, term: 'test', type_filter: 'topic'
|
|
end
|
|
|
|
end
|