0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00

Do not require inets for running tests anymore

This commit is contained in:
Loïc Hoguin 2013-01-22 14:22:28 +01:00
parent 647e95aed1
commit 3b8a1365d1
3 changed files with 11 additions and 7 deletions

View file

@ -63,7 +63,6 @@ groups() ->
[{ws, [], BaseTests}].
init_per_suite(Config) ->
application:start(inets),
application:start(crypto),
application:start(ranch),
application:start(cowboy),
@ -73,7 +72,6 @@ end_per_suite(_Config) ->
application:stop(cowboy),
application:stop(ranch),
application:stop(crypto),
application:stop(inets),
ok.
init_per_group(ws, Config) ->