1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #6879 from yahonda/address_basic_inclusion_model_test_oracle

Address test_basic_model test error with Oracle enhanced adapter
This commit is contained in:
Rafael Mendonça França 2012-06-27 07:58:17 -07:00
commit bb16b0ef7e

View file

@ -4,7 +4,7 @@ require 'models/teapot'
class BasicInclusionModelTest < ActiveRecord::TestCase
def test_basic_model
Teapot.create!(:name => "Ronnie Kemper")
assert_equal "Ronnie Kemper", Teapot.find(1).name
assert_equal "Ronnie Kemper", Teapot.first.name
end
def test_initialization