Sha256: beae2608087de82c60d1bb92db3e5e3a9e83d88ba355b0fb7d624c1b994afd8a

Contents?: true

Size: 821 Bytes

Versions: 3

Compression:

Stored size: 821 Bytes

Contents

require "spec_helper"

describe Mongoid::Relations::Cascading::Destroy do

  let(:person) do
    Person.new
  end

  let(:metadata) do
    stub(name: :posts)
  end

  let(:strategy) do
    described_class.new(person, metadata)
  end

  describe "#cascade" do

    let(:post) do
      stub
    end

    context "when the documents exist" do

      before do
        person.should_receive(:posts).and_return([ post ])
      end

      it "destroys all documents in the relation" do
        post.should_receive(:destroy)
        strategy.cascade
      end
    end

    context "when no documents exist" do

      before do
        person.should_receive(:posts).and_return([])
      end

      it "does not destroy anything" do
        post.should_receive(:destroy).never
        strategy.cascade
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mongoid-3.1.7 spec/mongoid/relations/cascading/destroy_spec.rb
mongoid-3.1.6 spec/mongoid/relations/cascading/destroy_spec.rb
mongoid-3.1.5 spec/mongoid/relations/cascading/destroy_spec.rb