summaryrefslogtreecommitdiff
path: root/inttest/eunit/src/foo.erl
blob: a4c91ba7567a62339e52fac236a5018b6a79ee06 (plain)
1
2
3
4
5
6
7
8
9
10
-module(foo).

-ifdef(TEST).

-include_lib("eunit/include/eunit.hrl").

foo_test() ->
    ?assert(true).

-endif.