Changeset 7889
- Timestamp:
- 10/15/07 00:10:09 (1 year ago)
- Files:
-
- trunk/activerecord/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/Rakefile
r7843 r7889 23 23 24 24 25 desc "Default Task" 26 task :default => [ :test_mysql, :test_sqlite, :test_sqlite3, :test_postgresql ] 27 28 # Run the unit tests 25 desc 'Run mysql, sqlite, and postgresql tests by default' 26 task :default => :test 27 28 desc 'Run mysql, sqlite, and postgresql tests' 29 task :test => %w(test_mysql test_sqlite test_sqlite3 test_postgresql) 29 30 30 31 for adapter in %w( mysql postgresql sqlite sqlite3 firebird sqlserver sqlserver_odbc db2 oracle sybase openbase frontbase )