Skip to content

Commit 48aaacf

Browse files
kleinschmidtomus
andauthored
FAQ entry on calling un-patched function inside patch (#136)
* FAQ entry on calling un-patched function inside patch I've added an FAQ entry on how to call the "un-patched" version of a function inside a patch (if you e.g. want to modify the arguments before calling a function). @omus mentioned that using `@mock` inside a patch can be useful as well but I couldn't immediately come up with an example off the top of my head, so I just left a short note about that being possible. * Update docs/src/faq.md Co-authored-by: Curtis Vogt <[email protected]> --------- Co-authored-by: Curtis Vogt <[email protected]>
1 parent 49be98e commit 48aaacf

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

docs/src/faq.md

+32
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,35 @@ displayed if `Mocking.activate` has been called.
3232
We recommend putting the call to [`Mocking.activate`](@ref activate) in your package's
3333
`test/runtests.jl` file after all of your import statements. The only true requirement is
3434
that you call `Mocking.activate()` before the first [`apply`](@ref) call.
35+
36+
## What if I want to call the un-patched function inside a patch?
37+
38+
Simply call the function without using `@mock` within the patch. For example we can count the number of calls a recursive function does like this:
39+
40+
```julia
41+
function fibonacci(n)
42+
if n <= 1
43+
return n
44+
else
45+
return @mock(fibonacci(n - 1)) + @mock(fibonacci(n - 2))
46+
end
47+
end
48+
49+
calls = Ref(0)
50+
p = @patch function fibonacci(n)
51+
calls[] += 1
52+
return fibonacci(n) # Calls original function
53+
end
54+
55+
apply(p) do
56+
@test @mock(fibonacci(1)) == 1
57+
@test calls[] == 1
58+
59+
calls[] = 0
60+
@test @mock(fibonacci(4)) == 3
61+
@test calls[] == 9
62+
end
63+
```
64+
65+
Note that you can also use `@mock` _inside_ a patch, which can be useful when using
66+
multiple dispatch with patches.

0 commit comments

Comments
 (0)