diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-09-05 19:24:43 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-09-05 19:24:43 -0500 |
commit | 59d1b23ea145cf367d747503772e9cb103c4844f (patch) | |
tree | f253323d369fc22cb6b20e3135153ef4882a0f88 | |
parent | 6dc9ad80e6ee4a581c5ace005632373fe7275c03 (diff) | |
download | rails-59d1b23ea145cf367d747503772e9cb103c4844f.tar.gz rails-59d1b23ea145cf367d747503772e9cb103c4844f.tar.bz2 rails-59d1b23ea145cf367d747503772e9cb103c4844f.zip |
Fix failing ARes isolated tests
-rw-r--r-- | activeresource/Rakefile | 3 | ||||
-rw-r--r-- | activeresource/test/cases/observing_test.rb | 2 | ||||
-rw-r--r-- | activeresource/test/cases/validations_test.rb | 3 |
3 files changed, 6 insertions, 2 deletions
diff --git a/activeresource/Rakefile b/activeresource/Rakefile index c392e91414..54c3fe44c6 100644 --- a/activeresource/Rakefile +++ b/activeresource/Rakefile @@ -34,11 +34,12 @@ Rake::TestTask.new { |t| t.verbose = true t.warning = true } + task :isolated_test do ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME')) activesupport_path = "#{File.dirname(__FILE__)}/../activesupport/lib" Dir.glob("test/**/*_test.rb").all? do |file| - system(ruby, "-Ilib:test:#{activesupport_path}", file) + system(ruby, '-w', "-Ilib:test:#{activesupport_path}", file) end or raise "Failures" end diff --git a/activeresource/test/cases/observing_test.rb b/activeresource/test/cases/observing_test.rb index 334b256772..9599ff7b0f 100644 --- a/activeresource/test/cases/observing_test.rb +++ b/activeresource/test/cases/observing_test.rb @@ -1,4 +1,6 @@ require 'abstract_unit' +require 'fixtures/person' +require 'active_support/core_ext/hash/conversions' class ObservingTest < Test::Unit::TestCase cattr_accessor :history diff --git a/activeresource/test/cases/validations_test.rb b/activeresource/test/cases/validations_test.rb index a8ab7d64e7..c05f625fb7 100644 --- a/activeresource/test/cases/validations_test.rb +++ b/activeresource/test/cases/validations_test.rb @@ -1,5 +1,6 @@ require 'abstract_unit' -require "fixtures/project" +require 'fixtures/project' +require 'active_support/core_ext/hash/conversions' # The validations are tested thoroughly under ActiveModel::Validations # This test case simply makes sur that they are all accessible by |