我是一个meck(和Erlang)新手,我在meck上有点挣扎。我收到以下错误:
=ERROR REPORT==== 27-Jan-2014::16:20:05 ===
Error in process <0.1825.0> with exit value: {{not_mocked,substatsDb},
[{meck_proc,gen_server,3,[{file,"src/meck_proc.erl"},{line,443}]},{meck_code_gen,exec,4,
[{file,"src/meck_code_gen.erl"},{line,147}]},{substats,loop,1,
[{file,"/Users/uyounri/gitsandbox/subpub/src/su...
在我的测试开始时,我声明要模拟的模块:
meck:new(substats)
在我的测试结束时,我做的最后一件事是卸载被模拟的模块:
meck:unload(substats)
模拟似乎按预期工作,直到测试结束时产生上述错误。
谢谢,丰富
编辑 添加 2 ?debugFmt() 行似乎已经解决了问题;至少我不再得到错误。这是修改后的完整功能:
stop(_) ->
meck:expect(substatsDb, stop, 1, fun(dbconn) -> ok end),
substats:stop(),
%% Note: this and the next ?debugFmt() calls prevent a meck
%% exit error. They both have to be present to prevent the error
?debugFmt("stop:~n", []),
meck:unload(substatsDb),
?debugFmt("stop: exit~n", []).