diff options
author | Arun Agrawal <arunagw@gmail.com> | 2011-12-21 12:20:12 +0530 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2011-12-21 12:20:12 +0530 |
commit | b4073c9ea9b04da81e95d5c1fdb985b812019147 (patch) | |
tree | dd44b92d4a9b6b4c78bc098ba6d67945b38c6aed /activerecord/test/cases/associations | |
parent | d2abe28ed342443f8c374a6e02977ccb0c3b3f95 (diff) | |
download | rails-b4073c9ea9b04da81e95d5c1fdb985b812019147.tar.gz rails-b4073c9ea9b04da81e95d5c1fdb985b812019147.tar.bz2 rails-b4073c9ea9b04da81e95d5c1fdb985b812019147.zip |
No Ruby 1.8 stuff. No more checks in code.
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r-- | activerecord/test/cases/associations/extension_test.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/activerecord/test/cases/associations/extension_test.rb b/activerecord/test/cases/associations/extension_test.rb index 395b59258d..d7c489c2b5 100644 --- a/activerecord/test/cases/associations/extension_test.rb +++ b/activerecord/test/cases/associations/extension_test.rb @@ -36,11 +36,6 @@ class AssociationsExtensionsTest < ActiveRecord::TestCase end def test_marshalling_extensions - 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 - david = developers(:david) assert_equal projects(:action_controller), david.projects.find_most_recent @@ -51,11 +46,6 @@ class AssociationsExtensionsTest < ActiveRecord::TestCase end def test_marshalling_named_extensions - 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 - david = developers(:david) assert_equal projects(:action_controller), david.projects_extended_by_name.find_most_recent |