Sha256: b7f47283429b203ec00fb77cadf61388913ba99014c05ec89b31b4be90870d91

Contents?: true

Size: 663 Bytes

Versions: 4

Compression:

Stored size: 663 Bytes

Contents

require 'spec/spec_helper'

describe ThinkingSphinx::Index::Builder do
  before :each do
    @builder = Class.new(ThinkingSphinx::Index::Builder)
    @builder.setup
  end
  
  describe "setup method" do
    it "should set up the information arrays and properties hash" do
      @builder.fields.should     == []
      @builder.attributes.should == []
      @builder.conditions.should == []
      @builder.groupings.should  == []
      @builder.properties.should == {}
    end
  end
  
  describe "indexes method" do
    
  end
  
  describe "has method" do
    
  end
  
  describe "where method" do
    
  end
  
  describe "set_property method" do
    
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
freelancing-god-thinking-sphinx-0.9.10 spec/unit/thinking_sphinx/index/builder_spec.rb
freelancing-god-thinking-sphinx-0.9.11 spec/unit/thinking_sphinx/index/builder_spec.rb
freelancing-god-thinking-sphinx-0.9.12 spec/unit/thinking_sphinx/index/builder_spec.rb
jaikoo-thinking-sphinx-0.9.10 spec/unit/thinking_sphinx/index/builder_spec.rb