mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
11 lines
161 B
Erlang
11 lines
161 B
Erlang
-module(test_SUITE).
|
|
|
|
-compile(export_all).
|
|
|
|
-include_lib("ct.hrl").
|
|
|
|
all() ->
|
|
[simple_test].
|
|
|
|
simple_test(Config) ->
|
|
io:format("Test: ~p\n", [Config]).
|