Sha256: 91c8dfc67dbda55a366e6aae84ea71b6b1cbe0f39c1315175f89a8f5284c64b6
Contents?: true
Size: 1.39 KB
Versions: 8
Compression:
Stored size: 1.39 KB
Contents
# frozen_string_literal: true require "spec_helper" describe Mongoid::Extensions::Symbol do describe ".demongoize" do context "when the object is not a symbol" do it "returns the symbol" do expect(Symbol.demongoize("test")).to eq(:test) end end context "when the object is nil" do it "returns nil" do expect(Symbol.demongoize(nil)).to be_nil end end end describe "#mongoid_id?" do context "when the string is id" do it "returns true" do expect(:id).to be_mongoid_id end end context "when the string is _id" do it "returns true" do expect(:_id).to be_mongoid_id end end context "when the string contains id" do it "returns false" do expect(:identity).to_not be_mongoid_id end end context "when the string contains _id" do it "returns false" do expect(:something_id).to_not be_mongoid_id end end end describe ".mongoize" do context "when the object is not a symbol" do it "returns the symbol" do expect(Symbol.mongoize("test")).to eq(:test) end end context "when the object is nil" do it "returns nil" do expect(Symbol.mongoize(nil)).to be_nil end end end describe "#mongoize" do it "returns self" do expect(:test.mongoize).to eq(:test) end end end
Version data entries
8 entries across 8 versions & 1 rubygems