aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJosh Toft <[email protected]>2014-05-12 21:33:51 -0700
committerJosh Toft <[email protected]>2014-05-12 21:33:51 -0700
commitc1298095d2b6098c32153b1cfcfe1aed8a6424ab (patch)
treebe34c6dbc05490c3428b9b2bdba2153acf57cd7e /test
parentdf0b088ef7ccbe2d47353a56bcd67e4cf815c6a8 (diff)
downloadgun-c1298095d2b6098c32153b1cfcfe1aed8a6424ab.tar.gz
gun-c1298095d2b6098c32153b1cfcfe1aed8a6424ab.tar.bz2
gun-c1298095d2b6098c32153b1cfcfe1aed8a6424ab.zip
Start/stop cowlib for tests, closes #4
Diffstat (limited to 'test')
-rw-r--r--test/twitter_SUITE.erl2
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.