summaryrefslogtreecommitdiff
path: root/inttest/eunit/src
diff options
context:
space:
mode:
authorJared Morrow <jared@basho.com>2014-05-19 09:14:03 -0600
committerJared Morrow <jared@basho.com>2014-05-19 09:14:03 -0600
commit93621d0d0c98035f79790ffd24beac94581b0758 (patch)
treecd077666cb93ead01c93fdf57d40a631c2f12fae /inttest/eunit/src
parent8a5b9aa29f1e768b8175657a94147d4881c37531 (diff)
parentc996e9878b76567b06c83e41bebbe783cced19b5 (diff)
Merge pull request #251 from mururu/eunit_compile_opts
Make sure that eunit/qc_compile_opts works
Diffstat (limited to 'inttest/eunit/src')
-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.