aboutsummaryrefslogtreecommitdiffstats
path: root/railties/Rakefile
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2009-10-08 18:12:28 -0700
committerCarl Lerche <carllerche@mac.com>2009-10-14 11:47:37 -0700
commitff8be66f249d49e82c8e1d04cb8cfbbc128deabe (patch)
tree6063bd4d1ff6353eb4cb6ef516c65ee5ce22b283 /railties/Rakefile
parent5ffb877d3a5d7fd2266b58495de435dd9c33d4e1 (diff)
downloadrails-ff8be66f249d49e82c8e1d04cb8cfbbc128deabe.tar.gz
rails-ff8be66f249d49e82c8e1d04cb8cfbbc128deabe.tar.bz2
rails-ff8be66f249d49e82c8e1d04cb8cfbbc128deabe.zip
Finish porting over the initializers to the app object and fix all the tests
Diffstat (limited to 'railties/Rakefile')
-rw-r--r--railties/Rakefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/Rakefile b/railties/Rakefile
index 23f9603b65..0ba5ca10c2 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -28,6 +28,7 @@ task :default => :test
task :test do
dir = ENV["TEST_DIR"] || "**"
Dir["test/#{dir}/*_test.rb"].all? do |file|
+ next true if file.include?("fixtures")
ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME'))
system(ruby, '-Itest', "-I#{File.dirname(__FILE__)}/../activesupport/lib", file)
end or raise "Failures"