mirror of
https://github.com/correl/riichi.git
synced 2024-11-15 03:00:18 +00:00
18 lines
212 B
Erlang
18 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}).
|