Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swallowing exceptions #42

Open
teamon opened this issue Sep 28, 2022 · 0 comments
Open

Swallowing exceptions #42

teamon opened this issue Sep 28, 2022 · 0 comments

Comments

@teamon
Copy link

teamon commented Sep 28, 2022

Consider the following example:

SomeMod
|> stub(:some_fun, fn _, _ -> Decimal.new(nil) end)

Here, Decimal.new(nil) should raise
** (FunctionClauseError) no function clause matching in Decimal.new/1
but what we get instead is:
** (FunctionClauseError) no function clause matching in nil.some_fun/2.

I think that's due tu this piece.
Maybe there's a way to inspect the exception and reraise if it's coming from inside stub.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant