Remove syntax test
This commit is contained in:
parent
0e5d15592a
commit
329988c483
|
@ -1,7 +1,5 @@
|
|||
-module(rabbit_stream_utils_SUITE).
|
||||
|
||||
-feature(maybe_expr, enable).
|
||||
|
||||
-compile(nowarn_export_all).
|
||||
-compile(export_all).
|
||||
|
||||
|
@ -19,7 +17,7 @@ suite() ->
|
|||
[{timetrap, {seconds, 30}}].
|
||||
|
||||
groups() ->
|
||||
[{tests, [], [sort_partitions, filter_spec, filter_defined, test_maybe]}].
|
||||
[{tests, [], [sort_partitions, filter_spec, filter_defined]}].
|
||||
|
||||
init_per_suite(Config) ->
|
||||
Config.
|
||||
|
@ -102,18 +100,3 @@ binding(Destination, Order) ->
|
|||
|
||||
binding(Destination) ->
|
||||
#binding{destination = #resource{name = Destination}, args = []}.
|
||||
|
||||
test_maybe(_) ->
|
||||
R = maybe
|
||||
ok ?= callme(),
|
||||
S = hello("world"),
|
||||
"bye bye " ++ S
|
||||
end,
|
||||
io:format("Result = ~p", [R]),
|
||||
ok.
|
||||
|
||||
callme() ->
|
||||
ok.
|
||||
|
||||
hello(S) ->
|
||||
"hello " ++ S.
|
||||
|
|
Loading…
Reference in New Issue