aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2017-07-26 13:27:32 -0400
committerGitHub <noreply@github.com>2017-07-26 13:27:32 -0400
commit7c3496c4ae8b13e6b36e2f1b05acb6e75fcdca08 (patch)
treeb127cb810f5ccd85613c275ae3b7c41084f82871
parent4bab34d2084259cba67f3bfb51217c10d606e175 (diff)
parent38ec2a1df69fe577a4131b55f9796cabaeb6a9db (diff)
downloadgoogletest-7c3496c4ae8b13e6b36e2f1b05acb6e75fcdca08.tar.gz
googletest-7c3496c4ae8b13e6b36e2f1b05acb6e75fcdca08.tar.bz2
googletest-7c3496c4ae8b13e6b36e2f1b05acb6e75fcdca08.zip
Merge pull request #1126 from junr03/fix-broken-link
docs: fix broken link from dummies guide to cook book
-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 0da4cbe2..c6c0464a 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#expecting-partially-ordered-calls.md).)
## 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)?