spec/unit/associations_spec.rb in mongoid-rspec-1.4.1 vs spec/unit/associations_spec.rb in mongoid-rspec-1.4.2

- old
+ new

@@ -6,12 +6,12 @@ it { should have_many(:articles).with_foreign_key(:author_id) } it { should reference_one(:record) } it { should have_one(:record) } - it { should reference_many :comments } - it { should have_many :comments } + it { should reference_many(:comments).with_dependent(:destroy) } + it { should have_many(:comments).with_dependent(:destroy) } it { should embed_one :profile } it { should reference_and_be_referenced_in_many(:children).of_type(User) } it { should have_and_belong_to_many(:children) } @@ -32,7 +32,11 @@ it { should be_referenced_in(:user).as_inverse_of(:comments) } end describe Record do it { should be_referenced_in(:user).as_inverse_of(:record) } + end + + describe Permalink do + it { should be_embedded_in(:linkable).as_inverse_of(:link) } end end