Sha256: 687605e79a8f7a73f61c8ce7facbdfb05967a78195f181526edd752d27e3b58c
Contents?: true
Size: 1.23 KB
Versions: 4
Compression:
Stored size: 1.23 KB
Contents
require 'acceptance/spec_helper' describe 'Accessing attributes directly via search results', :live => true do it "allows access to attribute values" do Book.create! :title => 'American Gods', :year => 2001 index search = Book.search('gods') search.context[:panes] << ThinkingSphinx::Panes::AttributesPane expect(search.first.sphinx_attributes['year']).to eq(2001) end it "provides direct access to the search weight/relevance scores" do Book.create! :title => 'American Gods', :year => 2001 index search = Book.search 'gods', :select => "*, #{ThinkingSphinx::SphinxQL.weight[:select]}" search.context[:panes] << ThinkingSphinx::Panes::WeightPane expect(search.first.weight).to eq(2500) end it "can enumerate with the weight" do gods = Book.create! :title => 'American Gods', :year => 2001 index search = Book.search 'gods', :select => "*, #{ThinkingSphinx::SphinxQL.weight[:select]}" search.masks << ThinkingSphinx::Masks::WeightEnumeratorMask expectations = [[gods, 2500]] search.each_with_weight do |result, weight| expectation = expectations.shift expect(result).to eq(expectation.first) expect(weight).to eq(expectation.last) end end end
Version data entries
4 entries across 4 versions & 1 rubygems