Erlang Meck:如何只模拟一个特定的函数子句?

Erlang Meck: How does one mock only a specific function clause?

给出一个包含多个子句的函数,我只想模拟一个特定的案例,对于所有其他会导致 'function_clause' 错误的输入,我希望由原始函数处理它功能。这几乎就像是 erlang meck 中的选择性直通。

您需要使用meck:passthrough/1: 我创建了一个具有如下功能的模块:

-module(demo).
-export([original/1]).

original(1) -> one;
original(2) -> two;
original(3) -> three.

然后在控制台上……

1> meck:new(demo).
ok
2> meck:expect(demo, original,
2>             fun (1) -> not_one
2>               ; (Arg) -> meck:passthrough([Arg])
2>             end).
ok
3> demo:original(1).
not_one
4> demo:original(2).
two

希望这对您有所帮助:)