aboutsummaryrefslogtreecommitdiff
path: root/test/README-quicktest.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/README-quicktest.md')
-rw-r--r--test/README-quicktest.md33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/README-quicktest.md b/test/README-quicktest.md
deleted file mode 100644
index 43c71e86b..000000000
--- a/test/README-quicktest.md
+++ /dev/null
@@ -1,33 +0,0 @@
-# Elixir unit tests
-
-## Running Elixir unit tests
-
-You can run Elixir unit tests with command:
-
-make quicktest
-
-You need to have ejabberd compile with Elixir and tools enabled.
-
-## Troubleshooting test
-
-To help with troubleshooting Elixir tests, we have added a special macro in ejabberd `logger.hrl` include file: ?EXUNIT_LOG
-
-To use this, in test file:
-
-1. in `setup_all, add:
-
- ```
- Application.start(:logger)
- ```
-
-2. Enable log capture for the test you want to analyse by adding
- `capture_log` tag before test implementation:
-
- ```
- @tag capture_log: true
- ```
-
-In the ejabberd code, if `logger.hrl` is included, you can code adds a
-EXUNIT_LOG macro:
-
- ?EXUNIT_LOG("My debug log:~p ~p", [Arg1, Arg2])