diff options
author | Yuki Ito <yuki@gnnk.net> | 2014-04-29 18:36:33 +0900 |
---|---|---|
committer | Yuki Ito <yuki@gnnk.net> | 2014-05-13 12:53:52 +0900 |
commit | c996e9878b76567b06c83e41bebbe783cced19b5 (patch) | |
tree | bf3031b4bc8cf17cbd5b775b16f558f98dccb118 /inttest/eunit/src | |
parent | 837df640872d6a5d5d75a7308126e2769d7babad (diff) |
Make sure that eunit/qc_compile_opts works fix #245
Diffstat (limited to 'inttest/eunit/src')
-rw-r--r-- | inttest/eunit/src/foo.erl | 10 |
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. |