Skip to content

Commit

Permalink
Revert "Running AR tests on postgres, mysql & sqlite"
Browse files Browse the repository at this point in the history
This reverts commit 28bd442.

Reason: Existing text was clearer imo.

[ci skip]
  • Loading branch information
vijaydev committed Apr 27, 2014
1 parent 75acbac commit 9ace0a7
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions guides/source/contributing_to_ruby_on_rails.md
Expand Up @@ -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,
Expand Down

0 comments on commit 9ace0a7

Please sign in to comment.