Sha256: 020eea91962b747b89f14c452ee1e1cfe14dd56b43175c0e76d9730388bdf261

Contents?: true

Size: 1.5 KB

Versions: 14

Compression:

Stored size: 1.5 KB

Contents

require "spec_helper"

describe Mongoid::Association::Embedded::EmbedsOne::Buildable do

  let(:base) do
    double
  end

  let(:options) do
    { }
  end

  describe "#build" do

    let(:document) do
      association.build(base, object)
    end

    let(:association) do
      Mongoid::Association::Embedded::EmbedsOne.new(Person, :name, options)
    end

    context "when provided nil" do

      let(:object) do
        nil
      end

      it "returns nil" do
        expect(document).to be_nil
      end
    end

    context "when provided a document" do

      let(:object) do
        Name.new
      end

      it "returns the document" do
        expect(document).to eq(object)
      end
    end

    context "when no type is in the object" do

      let(:object) do
        { "first_name" => "Corbin" }
      end

      it "creates the correct type of document" do
        expect(document).to be_a_kind_of(Name)
      end

      it "sets the object on the document" do
        expect(document.first_name).to eq("Corbin")
      end
    end

    context "when a type is in the object" do

      let(:association) do
        Mongoid::Association::Embedded::EmbedsOne.new(Person, :writer, options)
      end

      let(:object) do
        { "_type" => PdfWriter.name, "speed" => 100 }
      end

      it "creates the correct type of document" do
        expect(document).to be_a_kind_of(PdfWriter)
      end

      it "sets the object on the document" do
        expect(document.speed).to eq(100)
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
mongoid-7.0.13 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.12 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.11 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.10 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.8 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.7 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.6 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.5 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.4 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.3 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.2 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.1 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.0 spec/mongoid/association/embedded/embeds_one/buildable_spec.rb
mongoid-7.0.0.beta spec/mongoid/association/embedded/embeds_one/buildable_spec.rb