mirror of
https://github.com/valitydev/wapi-lib.git
synced 2024-11-07 10:38:52 +00:00
[WIP] Factor out a utility app with ct helpers
This commit is contained in:
parent
d983ec3ed2
commit
9394594a27
@ -58,8 +58,8 @@ start_app(lager = AppName) ->
|
||||
{async_threshold, 1},
|
||||
{async_threshold_window, 0},
|
||||
{error_logger_hwm, 600},
|
||||
{suppress_application_start_stop, true},
|
||||
{suppress_supervisor_start_stop, true},
|
||||
{suppress_application_start_stop, false},
|
||||
{suppress_supervisor_start_stop, false},
|
||||
{handlers, [
|
||||
{lager_common_test_backend, debug}
|
||||
]}
|
||||
@ -75,6 +75,9 @@ start_app(woody = AppName) ->
|
||||
{acceptors_pool_size, 4}
|
||||
]), #{}};
|
||||
|
||||
start_app({AppName, AppEnv}) ->
|
||||
{start_app_with(AppName, AppEnv), #{}};
|
||||
|
||||
start_app(AppName) ->
|
||||
{start_app_with(AppName, []), #{}}.
|
||||
|
19
apps/ff_cth/src/ff_cth.app.src
Normal file
19
apps/ff_cth/src/ff_cth.app.src
Normal file
@ -0,0 +1,19 @@
|
||||
{application, ff_cth, [
|
||||
{description,
|
||||
"Common Common Test helpers"
|
||||
},
|
||||
{vsn, "1"},
|
||||
{registered, []},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
genlib
|
||||
]},
|
||||
{env, []},
|
||||
{modules, []},
|
||||
{maintainers, [
|
||||
"Andrey Mayorov <a.mayorov@rbkmoney.com>"
|
||||
]},
|
||||
{licenses, []},
|
||||
{links, ["https://github.com/rbkmoney/fistful-server"]}
|
||||
]}.
|
Loading…
Reference in New Issue
Block a user