Sha256: 086dd018c923d2ff01627823c83051fdd337dfa62a562ab1469b5b0278634a02

Contents?: true

Size: 809 Bytes

Versions: 27

Compression:

Stored size: 809 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

require "spec_helper"

describe Mongoid::Criteria::Options do


  context 'when a persistence context with options is set on the class of the criteria' do

    let(:context) do
      Band.with(connect_timeout: 10) do |klass|
        klass.where(name: 'FKA Twigs').persistence_context
      end
    end

    it 'uses the persistence context of the class of the criteria' do
      expect(context.options).to eq({ connect_timeout: 10 })
    end
  end

  context 'when a persistence context with options is not set on the class of the criteria' do

    let(:context) do
      Band.where(name: 'FKA Twigs').persistence_context
    end

    it 'uses the persistence context of the class of the criteria' do
      expect(context.options).to eq({ })
    end
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
mongoid-7.1.5 spec/mongoid/criteria/options_spec.rb
mongoid-7.2.0.rc1 spec/mongoid/criteria/options_spec.rb
mongoid-7.1.4 spec/mongoid/criteria/options_spec.rb
mongoid-7.1.2 spec/mongoid/criteria/options_spec.rb
mongoid-7.1.1 spec/mongoid/criteria/options_spec.rb
mongoid-7.1.0 spec/mongoid/criteria/options_spec.rb
mongoid-7.1.0.rc0 spec/mongoid/criteria/options_spec.rb