Sha256: 95ba3e0a4f5572d09be0001aafe3c48b3046e8277949bf9d75b36bf9f08dd07c

Contents?: true

Size: 1.24 KB

Versions: 2

Compression:

Stored size: 1.24 KB

Contents

require 'test_helper'
require 'models'

class BelongsToProxyTest < Test::Unit::TestCase
  def setup
    Status.collection.clear
    Project.collection.clear
  end
  
  should "default to nil" do
    status = Status.new
    status.project.nil?.should == true
    status.project.inspect.should == "nil"
  end
  
  should "be able to replace the association" do
    status = Status.new
    project = Project.new(:name => "mongomapper")
    status.project = project
    status.save.should be_true
    
    from_db = Status.find(status.id)
    from_db.project.should_not be_nil
    from_db.project.name.should == "mongomapper"
  end
  
  should "unset the association" do
    status = Status.new
    project = Project.new(:name => "mongomapper")
    status.project = project
    status.save.should be_true
    
    from_db = Status.find(status.id)
    from_db.project = nil
    from_db.project.nil?.should == true
    from_db.project.inspect.should == "nil"
  end
  
  context "association id set but document not found" do
    setup do
      @status = Status.new(:name => 'Foo', :project_id => '1234')
    end

    should "return nil instead of raising error" do
      @status.project.nil?.should == true
      @status.project.inspect.should == "nil"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
djsun-mongo_mapper-0.5.2.1 test/functional/associations/test_belongs_to_proxy.rb
djsun-mongo_mapper-0.5.0.1 test/functional/associations/test_belongs_to_proxy.rb