summaryrefslogtreecommitdiff
path: root/inttest/eunit/src/foo.erl
diff options
context:
space:
mode:
Diffstat (limited to 'inttest/eunit/src/foo.erl')
-rw-r--r--inttest/eunit/src/foo.erl10
1 files changed, 10 insertions, 0 deletions
diff --git a/inttest/eunit/src/foo.erl b/inttest/eunit/src/foo.erl
new file mode 100644
index 0000000..a4c91ba
--- /dev/null
+++ b/inttest/eunit/src/foo.erl
@@ -0,0 +1,10 @@
+-module(foo).
+
+-ifdef(TEST).
+
+-include_lib("eunit/include/eunit.hrl").
+
+foo_test() ->
+ ?assert(true).
+
+-endif.