Files
setup-beam/test-projects/erlang_rebar3/test/mylib_SUITE.erl
T
Paulo F. Oliveira c988d89031 Add Gleam (#67)
2021-08-03 18:56:12 +01:00

15 lines
283 B
Erlang

-module(mylib_SUITE).
-include_lib("stdlib/include/assert.hrl").
-compile([export_all, nowarn_export_all]).
all() ->
[hello_world, ssl_ok].
hello_world(_Config) ->
?assertEqual(world, mylib:hello()).
ssl_ok(_Config) ->
{ok, _} = application:ensure_all_started(ssl).