Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 7889

Show
Ignore:
Timestamp:
10/15/07 00:10:09 (1 year ago)
Author:
bitsweat
Message:

Add explicit test task

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activerecord/Rakefile

    r7843 r7889  
    2323 
    2424 
    25 desc "Default Task" 
    26 task :default => [ :test_mysql, :test_sqlite, :test_sqlite3, :test_postgresql ] 
    27  
    28 # Run the unit tests 
     25desc 'Run mysql, sqlite, and postgresql tests by default' 
     26task :default => :test 
     27 
     28desc 'Run mysql, sqlite, and postgresql tests' 
     29task :test => %w(test_mysql test_sqlite test_sqlite3 test_postgresql) 
    2930 
    3031for adapter in %w( mysql postgresql sqlite sqlite3 firebird sqlserver sqlserver_odbc db2 oracle sybase openbase frontbase )