Skip to content

Commit ec70871

Browse files
committed
[MODEL] Added missing test for Response::Records#ids
1 parent 884de11 commit ec70871

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

elasticsearch-model/test/unit/response_records_test.rb

+6-2
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ def self.find(*args)
2020
end
2121
end
2222

23-
RESPONSE = { 'hits' => { 'total' => 123, 'max_score' => 456, 'hits' => [{'foo' => 'bar'}] } }
23+
RESPONSE = { 'hits' => { 'total' => 123, 'max_score' => 456, 'hits' => [{'_id' => '1', 'foo' => 'bar'}] } }
2424
RESULTS = Elasticsearch::Model::Response::Results.new DummyModel, RESPONSE
2525

2626
setup do
2727
search = Elasticsearch::Model::Searching::SearchRequest.new DummyModel, '*'
2828
search.stubs(:execute!).returns RESPONSE
2929

3030
response = Elasticsearch::Model::Response::Response.new DummyModel, search
31-
@records = Elasticsearch::Model::Response::Records.new DummyModel, response
31+
@records = Elasticsearch::Model::Response::Records.new DummyModel, response
3232
end
3333

3434
should "access the records" do
@@ -58,6 +58,10 @@ def self.find(*args)
5858
assert_equal ['FOO---bar'], @records.map_with_hit { |record, hit| "#{record}---#{hit.foo}" }
5959
end
6060

61+
should "return the IDs" do
62+
assert_equal ['1'], @records.ids
63+
end
64+
6165
context "with adapter" do
6266
module DummyAdapter
6367
module RecordsMixin

0 commit comments

Comments
 (0)