Set-up testing skeleton.
authorSiraaj Khandkar <siraaj@khandkar.net>
Tue, 12 Aug 2014 18:17:40 +0000 (14:17 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Tue, 12 Aug 2014 18:17:40 +0000 (14:17 -0400)
.gitignore
Makefile
test/hope_kv_list_SUITE.erl [new file with mode: 0644]

index fc83a9a..76b3746 100644 (file)
@@ -1 +1,3 @@
 ebin/
+logs/
+test/*.beam
index 732cd85..3104462 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,8 @@
        fresh-build \
        compile \
        clean \
-       dialyze
+       dialyze \
+       test
 
 fresh-build: \
        clean \
@@ -16,3 +17,6 @@ clean:
 
 dialyze:
        @dialyzer ebin
+
+test:
+       @rebar ct skip_deps=true --verbose=0
diff --git a/test/hope_kv_list_SUITE.erl b/test/hope_kv_list_SUITE.erl
new file mode 100644 (file)
index 0000000..65d4d1f
--- /dev/null
@@ -0,0 +1,35 @@
+-module(hope_kv_list_SUITE).
+
+%% Callbacks
+-export(
+    [ all/0
+    , groups/0
+    ]).
+
+%% Test cases
+-export(
+    [
+    ]).
+
+
+-define(GROUP_KV_LIST, kv_list).
+
+
+%% ============================================================================
+%% Common Test callbacks
+%% ============================================================================
+
+all() ->
+    [{group, ?GROUP_KV_LIST}].
+
+groups() ->
+    Tests =
+        [
+        ],
+    Properties = [],
+    [{?GROUP_KV_LIST, Properties, Tests}].
+
+
+%% =============================================================================
+%%  Test cases
+%% =============================================================================
This page took 0.020885 seconds and 4 git commands to generate.