aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2013-05-28 19:59:55 +0200
committerArun Agrawal <arunagw@gmail.com>2013-05-28 19:59:55 +0200
commit5eaa30e47c91716006b755b7c211d82bf81f7fc1 (patch)
tree0fcd9b15c3167734e9bcc8bc89bb729e56f55301 /actionpack
parente10262962b0be6525f93824a2dcb51f1f88d2c05 (diff)
downloadrails-5eaa30e47c91716006b755b7c211d82bf81f7fc1.tar.gz
rails-5eaa30e47c91716006b755b7c211d82bf81f7fc1.tar.bz2
rails-5eaa30e47c91716006b755b7c211d82bf81f7fc1.zip
Running isolated tests
These stopped running don't know when. But these should be running now.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/Rakefile10
-rw-r--r--actionpack/test/ts_isolated.rb15
2 files changed, 7 insertions, 18 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index ba7956c3ab..875dfc69f2 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -22,11 +22,15 @@ Rake::TestTask.new(:test_action_pack) do |t|
end
namespace :test do
- Rake::TestTask.new(:isolated) do |t|
- t.libs << 'test'
- t.pattern = 'test/ts_isolated.rb'
+ task :isolated do
+ ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME'))
+ Dir.glob("test/{abstract,controller,dispatch,template}/**/*_test.rb").all? do |file|
+ sh(ruby, '-Ilib:test', file)
+ end or raise "Failures"
end
+end
+namespace :test do
Rake::TestTask.new(:template) do |t|
t.libs << 'test'
t.pattern = 'test/template/**/*.rb'
diff --git a/actionpack/test/ts_isolated.rb b/actionpack/test/ts_isolated.rb
deleted file mode 100644
index 55620abe84..0000000000
--- a/actionpack/test/ts_isolated.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'active_support/testing/autorun'
-require 'rbconfig'
-require 'abstract_unit'
-
-class TestIsolated < ActiveSupport::TestCase
- ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME'))
-
- Dir["#{File.dirname(__FILE__)}/{abstract,controller,dispatch,template}/**/*_test.rb"].each do |file|
- define_method("test #{file}") do
- command = "#{ruby} -Ilib:test #{file}"
- result = silence_stderr { `#{command}` }
- assert $?.to_i.zero?, "#{command}\n#{result}"
- end
- end
-end