diff options
author | Loïc Hoguin <[email protected]> | 2013-09-04 19:24:54 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-09-04 19:24:54 +0200 |
commit | 4a30198f9068cc989616c8088e4b890bc1de259d (patch) | |
tree | 74f9847d6282c365e70245df13f77f3b5209faab /test/autobahn_SUITE.erl | |
parent | bd0de074c364ddd7d8f3dfdcdb6e4261433716d8 (diff) | |
download | cowboy-4a30198f9068cc989616c8088e4b890bc1de259d.tar.gz cowboy-4a30198f9068cc989616c8088e4b890bc1de259d.tar.bz2 cowboy-4a30198f9068cc989616c8088e4b890bc1de259d.zip |
Make cowlib a proper dependency
Start moving a few functions from Cowboy into cowlib.
Diffstat (limited to 'test/autobahn_SUITE.erl')
-rw-r--r-- | test/autobahn_SUITE.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/autobahn_SUITE.erl b/test/autobahn_SUITE.erl index 68a9221..da56667 100644 --- a/test/autobahn_SUITE.erl +++ b/test/autobahn_SUITE.erl @@ -37,6 +37,7 @@ groups() -> init_per_suite(Config) -> application:start(crypto), + application:start(cowlib), application:start(ranch), application:start(cowboy), %% /tmp must be used as the parent directory for the virtualenv because @@ -58,6 +59,7 @@ end_per_suite(_Config) -> os:cmd("deactivate"), application:stop(cowboy), application:stop(ranch), + application:stop(cowlib), application:stop(crypto), ok. |