Skip to content

Instantly share code, notes, and snippets.

@teamon
Created August 5, 2008 05:29
Show Gist options
  • Save teamon/4031 to your computer and use it in GitHub Desktop.
Save teamon/4031 to your computer and use it in GitHub Desktop.
it "should have same object_id" do
t = Team.create(:name => 'blah')
p = Player.create(:name => 'foo baz', :team => t)
t.players.first.object_id.should == p.object_id # fails
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment