Implement hope_result:lift_map_exn/3
[hope.git] / test / hope_fun_SUITE.erl
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
22 all() ->
23 [ {group, ?GROUP}
24 ].
25
26 groups() ->
27 Tests =
28 [ t_id
29 ],
30 Properties = [parallel],
31 [ {?GROUP, Properties, Tests}
32 ].
33
34
35 %% =============================================================================
36 %% Test cases
37 %% =============================================================================
38
39 t_id(_Cfg) ->
40 X = foo,
41 X = hope_fun:id(X).
This page took 0.058934 seconds and 4 git commands to generate.