diff options
Diffstat (limited to 'inttest/ct2/foo_SUITE.erl')
-rw-r--r-- | inttest/ct2/foo_SUITE.erl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/inttest/ct2/foo_SUITE.erl b/inttest/ct2/foo_SUITE.erl new file mode 100644 index 0000000..d03aedf --- /dev/null +++ b/inttest/ct2/foo_SUITE.erl @@ -0,0 +1,10 @@ +-module(foo_SUITE). + +-include_lib("common_test/include/ct.hrl"). + +-compile(export_all). + +all() -> [foo]. + +foo(Config) -> + io:format("Test: ~p\n", [Config]). |