Sha256: 78d2d243331f2aa2e5d491783e6b6784d583ef658a340f4ad27be3ad7a3524b4
Contents?: true
Size: 1.65 KB
Versions: 2
Compression:
Stored size: 1.65 KB
Contents
require 'spec_helper' describe "BelongsToPolymorphicProxy" do before do Status.collection.remove Project.collection.remove end it "should default to nil" do status = Status.new status.target.nil?.should be_truthy status.target.inspect.should == "nil" end it "should have boolean presence method" do status = Status.new status.target?.should be_falsey status.target = Project.new(:name => 'mongomapper') status.target?.should be_truthy end it "should be able to replace the association" do status = Status.new(:name => 'Foo!') project = Project.new(:name => "mongomapper") status.target = project status.save.should be_truthy status = status.reload status.target.nil?.should be_falsey status.target_id.should == project._id status.target_type.should == "Project" status.target.name.should == "mongomapper" end it "should unset the association" do status = Status.new(:name => 'Foo!') project = Project.new(:name => "mongomapper") status.target = project status.save.should be_truthy status = status.reload status.target = nil status.target_type.nil?.should be_truthy status.target_id.nil?.should be_truthy status.target.nil?.should be_truthy end context "association id set but document not found" do before do @status = Status.new(:name => 'Foo!') project = Project.new(:name => "mongomapper") @status.target = project @status.save.should be_truthy project.destroy @status.reload end it "should return nil instead of raising error" do @status.target.nil?.should be_truthy end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mongo_mapper-0.14.0 | spec/functional/associations/belongs_to_polymorphic_proxy_spec.rb |
mongo_mapper-0.14.0.rc1 | spec/functional/associations/belongs_to_polymorphic_proxy_spec.rb |