Sha256: fb4721ee2afceffd68d0fc8d3b4a34fb913bbef54c3507361bc1cce18aa4e332

Contents?: true

Size: 1.4 KB

Versions: 3

Compression:

Stored size: 1.4 KB

Contents

module ThinkingSphinx
  class Search; end
end

require 'thinking_sphinx/search/glaze'

describe ThinkingSphinx::Search::Glaze do
  let(:glaze)   { ThinkingSphinx::Search::Glaze.new context, object, raw, [] }
  let(:object)  { double('object') }
  let(:raw)     { {} }
  let(:context) { {} }

  describe '#!=' do
    it "is true for objects that don't match" do
      (glaze != double('foo')).should be_true
    end

    it "is false when the underlying object is a match" do
      (glaze != object).should be_false
    end
  end

  describe '#method_missing' do
    let(:glaze)    {
      ThinkingSphinx::Search::Glaze.new context, object, raw, [klass, klass] }
    let(:klass)    { double('pane class') }
    let(:pane_one) { double('pane one', :foo => 'one') }
    let(:pane_two) { double('pane two', :foo => 'two', :bar => 'two') }

    before :each do
      klass.stub(:new).and_return(pane_one, pane_two)
    end

    it "respects objects existing methods" do
      object.stub :foo => 'original'

      glaze.foo.should == 'original'
    end

    it "uses the first pane that responds to the method" do
      glaze.foo.should == 'one'
      glaze.bar.should == 'two'
    end

    it "raises the method missing error otherwise" do
      lambda { glaze.baz }.should raise_error(NoMethodError)
    end
  end

  describe '#unglazed' do
    it "returns the original object" do
      glaze.unglazed.should == object
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
thinking-sphinx-3.0.0 spec/thinking_sphinx/search/glaze_spec.rb
thinking-sphinx-3.0.0.rc spec/thinking_sphinx/search/glaze_spec.rb
thinking-sphinx-3.0.0.pre spec/thinking_sphinx/search/glaze_spec.rb