summaryrefslogtreecommitdiff
path: root/inttest/ct4/foo_SUITE.erl
diff options
context:
space:
mode:
Diffstat (limited to 'inttest/ct4/foo_SUITE.erl')
-rw-r--r--inttest/ct4/foo_SUITE.erl11
1 files changed, 11 insertions, 0 deletions
diff --git a/inttest/ct4/foo_SUITE.erl b/inttest/ct4/foo_SUITE.erl
new file mode 100644
index 0000000..fb4f56a
--- /dev/null
+++ b/inttest/ct4/foo_SUITE.erl
@@ -0,0 +1,11 @@
+-module(foo_SUITE).
+
+-include_lib("common_test/include/ct.hrl").
+
+-compile(export_all).
+
+all() -> [simple].
+
+simple(Config) ->
+ io:format("Test: ~p\n", [Config]),
+ ok.