Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 6068

Show
Ignore:
Timestamp:
01/28/07 09:12:04 (2 years ago)
Author:
bitsweat
Message:

Merge [6067] from trunk. References #6778.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1-2-stable/activerecord/test/finder_test.rb

    r6065 r6068  
    453453  # http://dev.rubyonrails.org/ticket/6778 
    454454  def test_find_ignores_previously_inserted_record 
    455     post = Post.create! 
     455    post = Post.create!(:title => 'test', :body => 'it out') 
    456456    assert_equal [], Post.find_all_by_id(nil) 
    457457  end