aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2014-04-27 21:29:15 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2014-04-27 21:29:15 +0530
commit9ace0a7ba149dd2409f541b1af69893191ff2450 (patch)
tree0dae363c5633d291d4f0e07fc02bf98e3d4b5f4e /guides/source
parent75acbac298ba407e6d86082a63ffa4e4a77667ac (diff)
downloadrails-9ace0a7ba149dd2409f541b1af69893191ff2450.tar.gz
rails-9ace0a7ba149dd2409f541b1af69893191ff2450.tar.bz2
rails-9ace0a7ba149dd2409f541b1af69893191ff2450.zip
Revert "Running AR tests on postgres, mysql & sqlite"
This reverts commit 28bd442034e0974d0a4d664076dafb8e9555816d. Reason: Existing text was clearer imo. [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/contributing_to_ruby_on_rails.md15
1 files 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 2ab3280dc8..da1f305e6c 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,