Rakefile in thumbs_up-0.6.7 vs Rakefile in thumbs_up-0.6.8

- old
+ new

@@ -31,13 +31,16 @@ end task :test_all_databases do # Test MySQL, Postgres and SQLite3 ENV['DB'] = 'mysql' + puts "Testing MySQL..." Rake::Task['test'].execute ENV['DB'] = 'postgres' + puts "Testing Postgres..." Rake::Task['test'].execute ENV['DB'] = 'sqlite3' + puts "Testing SQLite3..." Rake::Task['test'].execute end task :default => :test_all_databases