Changeset 6068
- Timestamp:
- 01/28/07 09:12:04 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1-2-stable/activerecord/test/finder_test.rb
r6065 r6068 453 453 # http://dev.rubyonrails.org/ticket/6778 454 454 def test_find_ignores_previously_inserted_record 455 post = Post.create! 455 post = Post.create!(:title => 'test', :body => 'it out') 456 456 assert_equal [], Post.find_all_by_id(nil) 457 457 end