diff options
author | Carl Lerche <carllerche@mac.com> | 2009-10-08 18:12:28 -0700 |
---|---|---|
committer | Carl Lerche <carllerche@mac.com> | 2009-10-14 11:47:37 -0700 |
commit | ff8be66f249d49e82c8e1d04cb8cfbbc128deabe (patch) | |
tree | 6063bd4d1ff6353eb4cb6ef516c65ee5ce22b283 /railties/Rakefile | |
parent | 5ffb877d3a5d7fd2266b58495de435dd9c33d4e1 (diff) | |
download | rails-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/Rakefile | 1 |
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" |