Sha256: e0090b9e05b981ea6dc4de95cd9e035328f1d74b4f06dbc1d21dc460696f99ed
Contents?: true
Size: 1.51 KB
Versions: 1
Compression:
Stored size: 1.51 KB
Contents
require 'spec_helper' RSpec.describe 'Associations' do describe User do if Mongoid::Compatibility::Version.mongoid6_or_newer? it { is_expected.to have_many(:articles).with_foreign_key(:author_id).ordered_by(:title) } end it { is_expected.to have_one(:record).as_inverse_of(:user).with_autobuild } it { is_expected.to have_many(:comments).with_dependent(:destroy).with_autosave } it { is_expected.to embed_one(:profile).as_inverse_of(:user) } it { is_expected.to have_and_belong_to_many(:children).of_type(User) } end describe Profile do it { is_expected.to be_embedded_in(:user).as_inverse_of(:profile) } end describe Article do it { is_expected.to belong_to(:author).of_type(User).as_inverse_of(:articles).with_index } it { is_expected.to embed_many(:comments).as_inverse_of(:article).with_cascading_callbacks } it { is_expected.to embed_one(:permalink).as_inverse_of(:linkable) } end describe Comment do it { is_expected.to be_embedded_in(:article).as_inverse_of(:comments).with_polymorphism } it { is_expected.to belong_to(:user).as_inverse_of(:comments) } end describe Record do it { is_expected.to belong_to(:user).as_inverse_of(:record) } end describe Permalink do it { is_expected.to be_embedded_in(:linkable).as_inverse_of(:link) } end describe Site do if Mongoid::Compatibility::Version.mongoid6_or_newer? it { is_expected.to have_many(:users).as_inverse_of(:site).ordered_by(:email.desc).with_counter_cache } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mongoid-rspec-4.0.0 | spec/unit/associations_spec.rb |