File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ module ClassMethods
95
95
# Article.search '{"query" : { "match_all" : {} }}'
96
96
#
97
97
def search ( query_or_payload , options = { } )
98
- search = SearchRequest . new ( self , query_or_payload , options = { } )
98
+ search = SearchRequest . new ( self , query_or_payload , options )
99
99
100
100
Response ::Response . new ( self , search )
101
101
end
Original file line number Diff line number Diff line change @@ -23,10 +23,11 @@ def self.document_type; 'bar'; end
23
23
. expects ( :new ) . with do |klass , query , options |
24
24
assert_equal DummySearchingModel , klass
25
25
assert_equal 'foo' , query
26
+ assert_equal ( { default_operator : 'AND' } , options )
26
27
end
27
28
. returns ( stub ( 'search' ) )
28
29
29
- DummySearchingModel . search 'foo'
30
+ DummySearchingModel . search 'foo' , default_operator : 'AND'
30
31
end
31
32
32
33
should "not execute the search" do
You can’t perform that action at this time.
0 commit comments