aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-03-04 11:43:16 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-03-04 11:46:30 -0300
commit9b9357b26eb24a55cfdcfca25bcaede72bd7902e (patch)
treef1fa92be7e5a6a1efe716e221d357868f980eac8 /activerecord/test/cases
parent9a2e164d733216b13dce7c766600b8b6ae9c9b12 (diff)
downloadrails-9b9357b26eb24a55cfdcfca25bcaede72bd7902e.tar.gz
rails-9b9357b26eb24a55cfdcfca25bcaede72bd7902e.tar.bz2
rails-9b9357b26eb24a55cfdcfca25bcaede72bd7902e.zip
Initialize @stale_state to nil in association
This apparently fix the warning related to @new_record variable not being initialized in AR's test suit, when an association is built and the object is marshalled/loaded. See these tests in AR's base_test.rb: test_marshalling_with_associations test_marshalling_new_record_round_trip_with_associations Closes #3720.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/base_test.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/test/cases/base_test.rb b/activerecord/test/cases/base_test.rb
index 190124b7aa..93f4a768d9 100644
--- a/activerecord/test/cases/base_test.rb
+++ b/activerecord/test/cases/base_test.rb
@@ -1921,11 +1921,6 @@ class BasicsTest < ActiveRecord::TestCase
end
def test_marshalling_new_record_round_trip_with_associations
- if ENV['TRAVIS'] && RUBY_VERSION == "1.8.7"
- return skip("Marshalling tests disabled for Ruby 1.8.7 on Travis CI due to what appears " \
- "to be a Ruby bug.")
- end
-
post = Post.new
post.comments.build