From 9ace0a7ba149dd2409f541b1af69893191ff2450 Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Sun, 27 Apr 2014 21:29:15 +0530 Subject: [PATCH] Revert "Running AR tests on postgres, mysql & sqlite" This reverts commit 28bd442034e0974d0a4d664076dafb8e9555816d. Reason: Existing text was clearer imo. [ci skip] --- guides/source/contributing_to_ruby_on_rails.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md index 2ab3280dc8078..da1f305e6cf94 100644 --- a/guides/source/contributing_to_ruby_on_rails.md +++ b/guides/source/contributing_to_ruby_on_rails.md @@ -244,14 +244,19 @@ $ bundle exec rake test ##### Testing Active Record -This is how you run the Active Record test suite only for specific database: +This is how you run the Active Record test suite only for SQLite3: ```bash $ cd activerecord -$ bundle exec rake test_sqlite3 #sqlite -$ bundle exec rake test_mysql #mysql using mysql gem -$ bundle exec rake test_mysql2 #mysql using mysql2 gem -$ bundle exec rake test_postgresql #postgres +$ bundle exec rake test_sqlite3 +``` + +You can now run the tests as you did for `sqlite3`. The tasks are respectively + +```bash +test_mysql +test_mysql2 +test_postgresql ``` Finally,