Sha256: 0ece1f90de71fcb6d86e1cc340d8ede91a97be2b85f7e5967d5faff6d38496e8

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

require 'spec_helper'

describe Elasticsearch::Model::Multimodel do

  let(:multimodel) do
    Elasticsearch::Model::Multimodel.new(model_1, model_2)
  end

  let(:model_1) do
    double('Foo', index_name: 'foo_index', document_type: 'foo', to_ary: nil)
  end

  let(:model_2) do
    double('Bar', index_name: 'bar_index', document_type: 'bar', to_ary: nil)
  end

  it 'has an index name' do
    expect(multimodel.index_name).to eq(['foo_index', 'bar_index'])
  end

  it 'has an document type' do
    expect(multimodel.document_type).to eq(['foo', 'bar'])
  end

  it 'has a client' do
    expect(multimodel.client).to eq(Elasticsearch::Model.client)
  end

  describe 'the model registry' do

    before(:all) do

      class JustAModel
        include Elasticsearch::Model
      end

      class JustAnotherModel
        include Elasticsearch::Model
      end
    end

    after(:all) do
      remove_classes(JustAModel, JustAnotherModel)
    end

    let(:multimodel) do
      Elasticsearch::Model::Multimodel.new
    end

    it 'includes model in the registry' do
      expect(multimodel.models).to include(JustAModel)
      expect(multimodel.models).to include(JustAnotherModel)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
elasticsearch-model-6.1.2 spec/elasticsearch/model/multimodel_spec.rb
elasticsearch-model-6.1.1 spec/elasticsearch/model/multimodel_spec.rb
elasticsearch-model-6.1.0 spec/elasticsearch/model/multimodel_spec.rb