aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Rakefile
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-08-22 04:38:03 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-08-22 04:38:03 +0000
commit070f3fdc8ce317772358185016f60480105963d6 (patch)
tree9a7b6075bd01b79404a3efc372cb9b0e8bfac45c /actionpack/Rakefile
parentbb531a946d016ab0f41d91a4858a62156e65333e (diff)
downloadrails-070f3fdc8ce317772358185016f60480105963d6.tar.gz
rails-070f3fdc8ce317772358185016f60480105963d6.tar.bz2
rails-070f3fdc8ce317772358185016f60480105963d6.zip
Clean up and run the Active Record integration tests by default.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4804 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/Rakefile')
-rwxr-xr-xactionpack/Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 0cdd8e1683..0a6e96926f 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -22,7 +22,9 @@ task :default => [ :test ]
# Run the unit tests
-Rake::TestTask.new { |t|
+task :test => [:test_action_pack, :test_active_record_integration]
+
+Rake::TestTask.new(:test_action_pack) { |t|
t.libs << "test"
# make sure we include the controller tests (c*) first as on some systems
# this will not happen automatically and the tests (as a whole) will error