我正在编写一个灵活的、基于适配器的错误跟踪库,并提供一组自定义测试断言函数以使集成测试更易于使用。
我有类似的东西
# /lib/test_helpers.ex
...
@doc """
Asserts specific exception and metadata was captured
## Example
exception = %ArgumentError{message: "test"}
exception |> MyApp.ErrorTracker.capture_exception(%{some_argument: 123})
assert_exception_captured %ArgumentError{message: "test"}, %{some_argument: 123}
"""
def assert_exception_captured(exception, extra) do
assert_receive {:exception_captured, ^exception, ^extra}, 100
end
这会将确切的异常传递给assert_exception_captured
,但在尝试对例如异常的结构进行模式匹配时它不起作用。
我希望能够做到这一点
...
assert_exception_captured _any_exception, %{some_argument: _}
我怎样才能使它与模式匹配一起工作?
非常感激