Sha256: 3e5c951d9f512122c9e52cd78d756a6da8f4d56eccba66f92760c11dd25d5324
Contents?: true
Size: 1.12 KB
Versions: 200
Compression:
Stored size: 1.12 KB
Contents
# # encoding: utf-8 # require 'spec_helper' # # describe Solr::SchemaGenerator do # # before(:each) do # @types = stub :types # @configuration = stub :configuration, :types => @types # @generator = Solr::SchemaGenerator.new @configuration # end # # describe 'bound_field_names' do # before(:each) do # @generator.stub! :combine_field_names => :some_field_names # end # it 'should bind field_names' do # b = @generator.bound_field_names # # eval('field_names', b).should == :some_field_names # end # end # # describe 'generate' do # before(:each) do # @generator.stub! :bound_field_names # @generator.stub! :generate_schema_for # end # it 'should receive generate_schema_for once with the result of extract_binding' do # @generator.stub! :bound_field_names => :some_binding # # @generator.should_receive(:generate_schema_for).once.with :some_binding # # @generator.generate # end # it 'should extract the binding' do # @generator.should_receive(:bound_field_names).once.with # # @generator.generate # end # end # # end
Version data entries
200 entries across 200 versions & 1 rubygems