From 81bf120c340a2b9db13e96cad7f08bc2733a1ffe Mon Sep 17 00:00:00 2001 From: Vladimir Strakhov Date: Mon, 30 Jul 2012 11:06:02 +0400 Subject: add mysql authentification command to chapter 2.Running the Test Suite --- guides/source/contributing_to_ruby_on_rails.textile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guides/source/contributing_to_ruby_on_rails.textile b/guides/source/contributing_to_ruby_on_rails.textile index a8a097d156..35ec988c5e 100644 --- a/guides/source/contributing_to_ruby_on_rails.textile +++ b/guides/source/contributing_to_ruby_on_rails.textile @@ -184,6 +184,10 @@ We need first to delete +.bundle/config+ because Bundler remembers in that file In order to be able to run the test suite against MySQL you need to create a user named +rails+ with privileges on the test databases: + +mysql -u root mysql -p + + mysql> GRANT ALL PRIVILEGES ON activerecord_unittest.* to 'rails'@'localhost'; -- cgit v1.2.3