Skip to content

Commit

Permalink
Merge pull request #11 from ilons/clearify-args-parameter-scope
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
jasonkarns authored Mar 30, 2018
2 parents db2ac2b + 7a83a03 commit 2f9811f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ So, in order to stub `date`, we could use something like this in a test case (wh
}


This verifies that `get_timestamp` indeed called `date` using the args defined in `${_DATE_ARGS}`, and made proper use of the output of it.
This verifies that `get_timestamp` indeed called `date` using the args defined in `${_DATE_ARGS}` (which can not be declared in the test-case with local), and made proper use of the output of it.

The plan is verified, one by one, as the calls come in, but the final check that there are no remaining un-met plans at the end is left until the stub is removed with `unstub`.

Expand Down

0 comments on commit 2f9811f

Please sign in to comment.