Sha256: 4a45fcd053cd2795c28fcef5673909143959ec9c20191a9d0616b5db09040715

Contents?: true

Size: 438 Bytes

Versions: 27

Compression:

Stored size: 438 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

require 'spec_helper'
require_relative '../../mongoid/association/referenced/has_one_models'

describe 'belongs_to associations' do
  context 'referencing top level classes when source class is namespaced' do
    let(:college) { HomCollege.create! }
    let(:child) { HomAccreditation::Child.new(hom_college: college) }

    it 'works' do
      expect(child).to be_valid
    end
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
mongoid-7.1.5 spec/integration/associations/belongs_to_spec.rb
mongoid-7.2.0.rc1 spec/integration/associations/belongs_to_spec.rb
mongoid-7.1.4 spec/integration/associations/belongs_to_spec.rb
mongoid-7.1.2 spec/integration/associations/belongs_to_spec.rb
mongoid-7.1.1 spec/integration/associations/belongs_to_spec.rb
mongoid-7.1.0 spec/integration/associations/belongs_to_spec.rb
mongoid-7.1.0.rc0 spec/integration/associations/belongs_to_spec.rb