diff options
author | Josh Toft <[email protected]> | 2014-05-12 21:33:51 -0700 |
---|---|---|
committer | Josh Toft <[email protected]> | 2014-05-12 21:33:51 -0700 |
commit | c1298095d2b6098c32153b1cfcfe1aed8a6424ab (patch) | |
tree | be34c6dbc05490c3428b9b2bdba2153acf57cd7e /test/twitter_SUITE.erl | |
parent | df0b088ef7ccbe2d47353a56bcd67e4cf815c6a8 (diff) | |
download | gun-c1298095d2b6098c32153b1cfcfe1aed8a6424ab.tar.gz gun-c1298095d2b6098c32153b1cfcfe1aed8a6424ab.tar.bz2 gun-c1298095d2b6098c32153b1cfcfe1aed8a6424ab.zip |
Start/stop cowlib for tests, closes #4
Diffstat (limited to 'test/twitter_SUITE.erl')
-rw-r--r-- | test/twitter_SUITE.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/twitter_SUITE.erl b/test/twitter_SUITE.erl index 865a2aa..17086e6 100644 --- a/test/twitter_SUITE.erl +++ b/test/twitter_SUITE.erl @@ -32,6 +32,7 @@ all() -> init_per_suite(Config) -> ok = application:start(ranch), ok = application:start(crypto), + ok = application:start(cowlib), ok = application:start(asn1), ok = application:start(public_key), ok = application:start(ssl), @@ -43,6 +44,7 @@ end_per_suite(_) -> ok = application:stop(ssl), ok = application:stop(public_key), ok = application:stop(asn1), + ok = application:stop(cowlib), ok = application:stop(crypto), ok = application:stop(ranch), ok. |