diff options
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. |