Update README.markdown to fix a small typo

This commit is contained in:
Justin Edwards 2013-03-08 18:43:06 -06:00
parent 83d69e68e3
commit dedbe8da0e
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ For the SQL libraries the fastest option will be to use `:transaction` as transa
One common approach is to force all processes to use the same database connection ([common ActiveRecord hack](http://blog.plataformatec.com.br/2011/12/three-tips-to-improve-the-performance-of-your-test-suite/)) however this approach has been reported to result in non-deterministic failures.
Another approach is to have the transactions rolled back in the application's process and relax the isolation level of the database (so the tests can read the uncommited transactions).
Another approach is to have the transactions rolled back in the application's process and relax the isolation level of the database (so the tests can read the uncommitted transactions).
An easier, but slower, solution is to use the `:truncation` or `:deletion` strategy.