diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-10 00:33:03 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-10 00:33:03 +0000 |
commit | 590ea2930dd3ba504c899a8e6cc41dcc290c7a47 (patch) | |
tree | 9168bb84c44206e9f96d10b6a9cb7334ece4877c /railties | |
parent | 7027fb8950096bccb441e680e63263ab9e9f225d (diff) | |
download | rails-590ea2930dd3ba504c899a8e6cc41dcc290c7a47.tar.gz rails-590ea2930dd3ba504c899a8e6cc41dcc290c7a47.tar.bz2 rails-590ea2930dd3ba504c899a8e6cc41dcc290c7a47.zip |
Added inclusion of fix for test/unit and rake problems with Ruby 1.8.2
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@361 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rwxr-xr-x | railties/fresh_rakefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/fresh_rakefile b/railties/fresh_rakefile index 87263c4bff..d46c057194 100755 --- a/railties/fresh_rakefile +++ b/railties/fresh_rakefile @@ -7,6 +7,8 @@ $VERBOSE = nil require File.dirname(__FILE__) + '/config/environment' require 'code_statistics' +require 'active_record/support/std_ext/test_unit_ext' # temporary fix until test/unit is cured for 1.8.2 + desc "Run all the tests on a fresh test database" task :default => [ :clone_development_structure_to_test, :test_units, :test_functional ] |