aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-07-19 11:30:15 -0500
committerJoshua Peek <josh@joshpeek.com>2008-07-19 11:30:15 -0500
commit3fdd1acab61a46ab4823d63ad0bab4879d2bb446 (patch)
treeb30b5a075f6e08ca999be1456496cda651e388d0
parentb74b97fef5d94f91d6fbf9aec20516c7fe4ce24d (diff)
downloadrails-3fdd1acab61a46ab4823d63ad0bab4879d2bb446.tar.gz
rails-3fdd1acab61a46ab4823d63ad0bab4879d2bb446.tar.bz2
rails-3fdd1acab61a46ab4823d63ad0bab4879d2bb446.zip
Dropped SQLite 2 from default test runner
-rwxr-xr-xactiverecord/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index 60b17e02b9..983528aff7 100755
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -30,7 +30,7 @@ desc 'Run mysql, sqlite, and postgresql tests by default'
task :default => :test
desc 'Run mysql, sqlite, and postgresql tests'
-task :test => %w(test_mysql test_sqlite test_sqlite3 test_postgresql)
+task :test => %w(test_mysql test_sqlite3 test_postgresql)
for adapter in %w( mysql postgresql sqlite sqlite3 firebird db2 oracle sybase openbase frontbase )
Rake::TestTask.new("test_#{adapter}") { |t|