Remove syntax test

This commit is contained in:
Arnaud Cogoluègnes 2023-11-17 09:00:08 +01:00
parent 0e5d15592a
commit 329988c483
No known key found for this signature in database
GPG Key ID: D5C8C4DFAD43AFA8
1 changed files with 1 additions and 18 deletions

View File

@ -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.