require 'test_helper' class TestRailsCompatibility < Test::Unit::TestCase class BigStuff include MongoMapper::Document end class Item include MongoMapper::EmbeddedDocument key :for_all, String end class FirstItem < Item key :first_only, String many :second_items end class SecondItem < Item key :second_only, String end context "EmbeddedDocument" do should "alias many to has_many" do FirstItem.should respond_to(:has_many) end should "alias one to has_one" do FirstItem.should respond_to(:has_one) end should "have column names" do Item.column_names.sort.should == ['_id', '_type', 'for_all'] FirstItem.column_names.sort.should == ['_id', '_type', 'first_only', 'for_all'] SecondItem.column_names.sort.should == ['_id', '_type', 'for_all', 'second_only'] end should "alias new to new_record?" do instance = Item.new instance.new_record?.should == instance.new? end should "implement human_name" do Item.human_name.should == 'Item' end end context "Document" do should "implement human_name" do BigStuff.human_name.should == 'Big Stuff' end end end