mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:34:18 +08:00
17 lines
330 B
Ruby
17 lines
330 B
Ruby
require 'spec_helper'
|
|
|
|
describe SearchController do
|
|
|
|
it 'performs the query' do
|
|
Search.expects(:query).with('test', nil)
|
|
xhr :get, :query, term: 'test'
|
|
end
|
|
|
|
it 'performs the query with a filter' do
|
|
Search.expects(:query).with('test', 'topic')
|
|
xhr :get, :query, term: 'test', type_filter: 'topic'
|
|
end
|
|
|
|
|
|
end
|