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/eunit_src | |
parent | 837df640872d6a5d5d75a7308126e2769d7babad (diff) |
Make sure that eunit/qc_compile_opts works fix #245
Diffstat (limited to 'inttest/eunit/eunit_src')
-rw-r--r-- | inttest/eunit/eunit_src/bar.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/inttest/eunit/eunit_src/bar.erl b/inttest/eunit/eunit_src/bar.erl new file mode 100644 index 0000000..6a80dac --- /dev/null +++ b/inttest/eunit/eunit_src/bar.erl @@ -0,0 +1,6 @@ +-module(bar). + +-include_lib("eunit/include/eunit.hrl"). + +bar_test() -> + ?assert(true). |