aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2010-11-28 09:41:49 +0900
committerAkira Matsuda <ronnie@dio.jp>2010-11-28 09:42:19 +0900
commit2029187c5611e2da9995637d4f738ed3af834172 (patch)
treed6caae5412fb7da13e83900f06fef19bf217a841 /railties
parent1662aa1a15ad3f2218f85e4bd58aea56708a87a1 (diff)
downloadrails-2029187c5611e2da9995637d4f738ed3af834172.tar.gz
rails-2029187c5611e2da9995637d4f738ed3af834172.tar.bz2
rails-2029187c5611e2da9995637d4f738ed3af834172.zip
s/myqsl/mysql/
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/contributing_to_rails.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/contributing_to_rails.textile b/railties/guides/source/contributing_to_rails.textile
index ccb9db5eee..1a1f4e9858 100644
--- a/railties/guides/source/contributing_to_rails.textile
+++ b/railties/guides/source/contributing_to_rails.textile
@@ -132,7 +132,7 @@ You can now run tests as you did for +sqlite3+:
rake test_mysql
</shell>
-You can also replace +myqsl+ with +postgresql+, +jdbcmysql+, +jdbcsqlite3+ or +jdbcpostgresql+. Check out the file +activerecord/RUNNING_UNIT_TESTS+ for information on running more targeted database tests, or the file +ci/ci_build.rb+ to see the test suite that the Rails continuous integration server runs.
+You can also replace +mysql+ with +postgresql+, +jdbcmysql+, +jdbcsqlite3+ or +jdbcpostgresql+. Check out the file +activerecord/RUNNING_UNIT_TESTS+ for information on running more targeted database tests, or the file +ci/ci_build.rb+ to see the test suite that the Rails continuous integration server runs.
NOTE: If you're working with Active Record code, you _must_ ensure that the tests pass for at least MySQL, PostgreSQL, and SQLite 3. Subtle differences between the various Active Record database adapters have been behind the rejection of many patches that looked OK when tested only against MySQL.