aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs/ForDummies.md
diff options
context:
space:
mode:
authorJose Nino <jnino@lyft.com>2017-07-26 10:58:05 -0700
committerJose Nino <jnino@lyft.com>2017-07-26 10:58:05 -0700
commit5c279131db71cd434813a8abdd342db52349bcfc (patch)
tree6814bd7b7d064199ccf07cf7ab0fa052261a7a72 /googlemock/docs/ForDummies.md
parentb9427ca47731cba34a08d97e9bd49e78dcfeeee8 (diff)
downloadgoogletest-5c279131db71cd434813a8abdd342db52349bcfc.tar.gz
googletest-5c279131db71cd434813a8abdd342db52349bcfc.tar.bz2
googletest-5c279131db71cd434813a8abdd342db52349bcfc.zip
docs: fix broken link
Diffstat (limited to 'googlemock/docs/ForDummies.md')
-rw-r--r--googlemock/docs/ForDummies.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/ForDummies.md b/googlemock/docs/ForDummies.md
index c6c0464a..892f1be6 100644
--- a/googlemock/docs/ForDummies.md
+++ b/googlemock/docs/ForDummies.md
@@ -365,7 +365,7 @@ By creating an object of type `InSequence`, all expectations in its scope are pu
In this example, we test that `Foo()` calls the three expected functions in the order as written. If a call is made out-of-order, it will be an error.
-(What if you care about the relative order of some of the calls, but not all of them? Can you specify an arbitrary partial order? The answer is ... yes! If you are impatient, the details can be found in the [CookBook](CookBook#expecting-partially-ordered-calls.md).)
+(What if you care about the relative order of some of the calls, but not all of them? Can you specify an arbitrary partial order? The answer is ... yes! If you are impatient, the details can be found in the [CookBook](CookBook.md#expecting-partially-ordered-calls).)
## All Expectations Are Sticky (Unless Said Otherwise) ##
Now let's do a quick quiz to see how well you can use this mock stuff already. How would you test that the turtle is asked to go to the origin _exactly twice_ (you want to ignore any other instructions it receives)?