diff options
author | Jared Morrow <jared@basho.com> | 2014-05-19 09:14:03 -0600 |
---|---|---|
committer | Jared Morrow <jared@basho.com> | 2014-05-19 09:14:03 -0600 |
commit | 93621d0d0c98035f79790ffd24beac94581b0758 (patch) | |
tree | cd077666cb93ead01c93fdf57d40a631c2f12fae /inttest/eunit/eunit_src | |
parent | 8a5b9aa29f1e768b8175657a94147d4881c37531 (diff) | |
parent | c996e9878b76567b06c83e41bebbe783cced19b5 (diff) |
Merge pull request #251 from mururu/eunit_compile_opts
Make sure that eunit/qc_compile_opts works
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). |