aboutsummaryrefslogtreecommitdiff
path: root/test/README
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2013-06-19 20:11:20 +1000
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2013-06-19 20:12:15 +1000
commit4f8bb4f9183cc91d23991bd652ff8c9f65f7b182 (patch)
tree94d6903f1e71b592da83053776e8813d24f9d258 /test/README
parentMerge branch 'master' of github.com:processone/ejabberd (diff)
Add tests for modules using MySQL/PostgreSQL
Diffstat (limited to 'test/README')
-rw-r--r--test/README15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/README b/test/README
new file mode 100644
index 000000000..c82b791bf
--- /dev/null
+++ b/test/README
@@ -0,0 +1,15 @@
+You need MySQL and PostgreSQL up and running.
+Both of them should grant access to user 'ejabberd_test' with
+password 'ejabberd_test' on database 'ejabberd_test'.
+
+Here is a quick setup example:
+
+$ psql template1
+template1=# CREATE USER ejabberd_test WITH PASSWORD 'ejabberd_test';
+template1=# CREATE DATABASE ejabberd_test;
+template1=# GRANT ALL PRIVILEGES ON DATABASE ejabberd_test TO ejabberd_test;
+
+$ mysql
+mysql> CREATE USER ejabberd_test IDENTIFIED BY 'ejabberd_test';
+mysql> CREATE DATABASE ejabberd_test;
+mysql> GRANT ALL ON ejabberd_test.* TO ejabberd_test;