Skip to content

Commit 8118f31

Browse files
committed
Merge pull request #198 from JonathonMA/doc-test-requirements
Document user and database requirements for tests
2 parents 401d7a8 + cf0ab2a commit 8118f31

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,15 @@ bundle install
317317
rake
318318
```
319319

320+
The tests require the "test" database to exist, and expect to connect
321+
both as root and the running user, both with a blank password:
322+
323+
``` sql
324+
CREATE DATABASE test;
325+
CREATE USER '<user>'@'localhost' IDENTIFIED BY '';
326+
GRANT ALL PRIVILEGES ON test.* TO '<user>'@'localhost';
327+
```
328+
320329
## Special Thanks
321330

322331
* Eric Wong - for the contribution (and the informative explanations) of some thread-safety, non-blocking I/O and cleanup patches. You rock dude

0 commit comments

Comments
 (0)