mirror of
https://github.com/correl/riichi.git
synced 2024-11-14 11:09:36 +00:00
17 lines
212 B
Erlang
17 lines
212 B
Erlang
-module(eunit_SUITE).
|
|
|
|
-include_lib("common_test/include/ct.hrl").
|
|
|
|
%% ct.
|
|
-export([all/0]).
|
|
|
|
%% Tests.
|
|
-export([eunit/1]).
|
|
|
|
%% ct.
|
|
|
|
all() ->
|
|
[eunit].
|
|
|
|
eunit(_) ->
|
|
ok = eunit:test({application, riichi}).
|