diff options
Diffstat (limited to 'actionpack/Rakefile')
-rwxr-xr-x | actionpack/Rakefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile index 8e9ed0893b..a1fd6a6064 100755 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -31,6 +31,13 @@ Rake::TestTask.new { |t| t.verbose = true } +desc 'ActiveRecord Integration Tests' +Rake::TestTask.new(:test_active_record_integration) do |t| + t.libs << "test" + t.test_files = Dir.glob("test/activerecord/*_test.rb") + t.verbose = true +end + # Genereate the RDoc documentation |