Skip to content

Commit

Permalink
Merge pull request #1477 from mroderick/add-documentation-for-getcalls
Browse files Browse the repository at this point in the history
Add missing documentation for spy.getCalls()
  • Loading branch information
mroderick committed Jun 30, 2017
2 parents 496f6b0 + fea23b0 commit 8ad2ed7
Show file tree
Hide file tree
Showing 14 changed files with 70 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/_releases/v1.17.6/spies.md
Expand Up @@ -351,6 +351,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v1.17.7/spies.md
Expand Up @@ -351,6 +351,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v2.0.0/spies.md
Expand Up @@ -349,6 +349,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v2.1.0/spies.md
Expand Up @@ -349,6 +349,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v2.2.0/spies.md
Expand Up @@ -361,6 +361,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v2.3.0/spies.md
Expand Up @@ -361,6 +361,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v2.3.1/spies.md
Expand Up @@ -361,6 +361,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v2.3.2/spies.md
Expand Up @@ -361,6 +361,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v2.3.3/spies.md
Expand Up @@ -361,6 +361,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v2.3.4/spies.md
Expand Up @@ -361,6 +361,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v2.3.5/spies.md
Expand Up @@ -361,6 +361,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/_releases/v2.3.6/spies.md
Expand Up @@ -361,6 +361,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/api/v1.17.3/spies/index.md
Expand Up @@ -371,6 +371,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down
5 changes: 5 additions & 0 deletions docs/release-source/release/spies.md
Expand Up @@ -361,6 +361,11 @@ assertEquals("/stuffs", spyCall.args[0]);
```


#### `var spyCalls = spy.getCalls();`

Returns an `Array` of all [calls](#spycall) recorded by the spy.


#### `spy.thisValues`

Array of `this` objects, `spy.thisValues[0]` is the `this` object for the first call.
Expand Down

0 comments on commit 8ad2ed7

Please sign in to comment.