summaryrefslogtreecommitdiff
path: root/rebar.config.sample
diff options
context:
space:
mode:
authorTim Watson <watson.timothy@gmail.com>2011-09-18 13:38:31 +0100
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2011-12-28 12:41:36 +0100
commit286a2a88a4d769b702529d184661c4166854f27e (patch)
treeedc009f279f47fdb965cdb055e86815d9e8a8c72 /rebar.config.sample
parentbd349bd2c4d8f68e19f130ea04cf27542e52fb3b (diff)
downloadrebar-286a2a88a4d769b702529d184661c4166854f27e.tar.gz
Add support for customising common test directory
This patch allows users to specify the directory in which common_test source files can be found. Most common_test suites are integration, rather than unit tests and keeping the sources apart from test sources for other frameworks such as eunit and PropEr is a useful feature.
Diffstat (limited to 'rebar.config.sample')
-rw-r--r--rebar.config.sample3
1 files changed, 3 insertions, 0 deletions
diff --git a/rebar.config.sample b/rebar.config.sample
index 23c3c70..731a3e5 100644
--- a/rebar.config.sample
+++ b/rebar.config.sample
@@ -86,6 +86,9 @@
%% == Common Test ==
+%% Override the default "test" directory in which SUITEs are located
+{ct_dir, "itest"}.
+
%% Option to pass extra parameters when launching Common Test
{ct_extra_params, "-boot start_sasl -s myapp"}.