summaryrefslogtreecommitdiff
path: root/inttest/ct2/foo_SUITE.erl
blob: be089c78ac31b77352e750a538b173dc9f0d4d0f (plain)
1
2
3
4
5
6
7
8
9
10
-module(foo_SUITE).

-include_lib("common_test/include/ct.hrl").

-export([all/0, foo/1]).

all() -> [foo].

foo(Config) ->
    io:format("Test: ~p\n", [Config]).