rebar/inttest/eunit/src/foo.erl

11 lines
114 B
Erlang
Raw Normal View History

-module(foo).
-ifdef(TEST).
-include_lib("eunit/include/eunit.hrl").
foo_test() ->
?assert(true).
-endif.