1
0
Fork 0
mirror of https://github.com/correl/rebar.git synced 2025-03-20 09:19:24 -09:00
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.