summaryrefslogtreecommitdiff
path: root/inttest/eunit/src/foo.erl
diff options
context:
space:
mode:
authorYuki Ito <yuki@gnnk.net>2014-04-29 18:36:33 +0900
committerYuki Ito <yuki@gnnk.net>2014-05-13 12:53:52 +0900
commitc996e9878b76567b06c83e41bebbe783cced19b5 (patch)
treebf3031b4bc8cf17cbd5b775b16f558f98dccb118 /inttest/eunit/src/foo.erl
parent837df640872d6a5d5d75a7308126e2769d7babad (diff)
Make sure that eunit/qc_compile_opts works fix #245
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.