mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
11 lines
160 B
Erlang
11 lines
160 B
Erlang
|
-module(foo_SUITE).
|
||
|
|
||
|
-include_lib("common_test/include/ct.hrl").
|
||
|
|
||
|
-compile(export_all).
|
||
|
|
||
|
all() -> [foo].
|
||
|
|
||
|
foo(Config) ->
|
||
|
io:format("Test: ~p\n", [Config]).
|