Return k/v list itself from validate_unique_presence.
[hope.git] / test / hope_fun_SUITE.erl
CommitLineData
64617423
SK
1-module(hope_fun_SUITE).
2
3%% Callbacks
4-export(
5 [ all/0
6 , groups/0
7 ]).
8
9%% Test cases
10-export(
11 [ t_id/1
12 ]).
13
14
15-define(GROUP, hope_fun).
16
17
18%% ============================================================================
19%% Common Test callbacks
20%% ============================================================================
21
22all() ->
23 [ {group, ?GROUP}
24 ].
25
26groups() ->
27 Tests =
28 [ t_id
29 ],
30 Properties = [parallel],
31 [ {?GROUP, Properties, Tests}
32 ].
33
34
35%% =============================================================================
36%% Test cases
37%% =============================================================================
38
39t_id(_Cfg) ->
40 X = foo,
41 X = hope_fun:id(X).
This page took 0.021873 seconds and 4 git commands to generate.