make sure AR isolated tests set the environment variable

This commit is contained in:
Aaron Patterson 2011-06-06 18:01:11 -07:00
parent a6c5cc2377
commit 80451a1fa6
1 changed files with 2 additions and 1 deletions

View File

@ -59,7 +59,7 @@ end
(Dir["test/cases/**/*_test.rb"].reject {
|x| x =~ /\/adapters\//
} + Dir["test/cases/adapters/#{adapter_short}/**/*_test.rb"]).all? do |file|
sh(ruby, "-Itest", "-r#{File.expand_path('../', __FILE__)}/test/connections/#{adapter}", file)
sh(ruby, "-Itest", file)
end or raise "Failures"
end
@ -73,6 +73,7 @@ end
# Make sure the adapter test evaluates the env setting task
task "test_#{adapter}" => "#{adapter}:env"
task "isolated_test_#{adapter}" => "#{adapter}:env"
end
rule '.sqlite3' do |t|