Skip to content

Commit cf0ab2a

Browse files
committed
Document user and database requirements for tests
1 parent e74645e commit cf0ab2a

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
@@ -318,6 +318,15 @@ bundle install
318318
rake
319319
```
320320

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

323332
* 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)