Skip to content
This repository has been archived by the owner on May 25, 2021. It is now read-only.

Commit

Permalink
Merge remote branch 'cloudant:couchdb-3293'
Browse files Browse the repository at this point in the history
This closes #155

Signed-off-by: ILYA Khlopotov <iilyak@apache.org>
  • Loading branch information
iilyak committed Feb 9, 2017
2 parents 928bb2e + cae3664 commit 90bd048
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/chttpd_db_bulk_get_test.erl
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@


setup() ->
mock(config),
mock(chttpd),
mock(couch_epi),
mock(couch_httpd),
Expand All @@ -31,6 +32,7 @@ setup() ->

teardown(Pid) ->
ok = stop_accumulator(Pid),
meck:unload(config),
meck:unload(chttpd),
meck:unload(couch_epi),
meck:unload(couch_httpd),
Expand Down Expand Up @@ -270,6 +272,10 @@ mock(couch_stats) ->
ok;
mock(fabric) ->
ok = meck:new(fabric, [passthrough]),
ok;
mock(config) ->
ok = meck:new(config, [passthrough]),
ok = meck:expect(config, get, fun(_, _, Default) -> Default end),
ok.


Expand Down

0 comments on commit 90bd048

Please sign in to comment.