This repository has been archived by the owner on Apr 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace unknown defaults with any defaults and make self assertions u…
…se assertEquals (#37) * Replace unknown defaults with any defaults * Fix this on default stub * Make asserts self use assertEquals * Revert "Fix this on default stub" This reverts commit 7c8b935.
- Loading branch information
Showing
6 changed files
with
72 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Mock | ||
|
||
[![release](https://img.shields.io/badge/release-0.14.0-success)](https://github.com/udibo/mock/releases/tag/0.14.0) | ||
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/mock@0.14.0/mod.ts) | ||
[![release](https://img.shields.io/badge/release-0.15.0-success)](https://github.com/udibo/mock/releases/tag/0.15.0) | ||
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/mock@0.15.0/mod.ts) | ||
[![CI](https://github.com/udibo/mock/workflows/CI/badge.svg)](https://github.com/udibo/mock/actions?query=workflow%3ACI) | ||
[![codecov](https://codecov.io/gh/udibo/mock/branch/main/graph/badge.svg?token=TXORMSEHM7)](https://codecov.io/gh/udibo/mock) | ||
[![license](https://img.shields.io/github/license/udibo/mock)](https://github.com/udibo/mock/blob/master/LICENSE) | ||
|
@@ -30,22 +30,22 @@ imported directly from GitHub using raw content URLs. | |
|
||
```ts | ||
// Import from Deno's third party module registry | ||
import { spy, stub } from "https://deno.land/x/mock@0.14.0/mod.ts"; | ||
import { spy, stub } from "https://deno.land/x/mock@0.15.0/mod.ts"; | ||
// Import from GitHub | ||
import { spy, stub } "https://raw.githubusercontent.com/udibo/mock/0.14.0/mod.ts"; | ||
import { spy, stub } "https://raw.githubusercontent.com/udibo/mock/0.15.0/mod.ts"; | ||
``` | ||
If you do not need all of the sub-modules, you can choose to just import the | ||
sub-modules you need. | ||
```ts | ||
// Import from Deno's third party module registry | ||
import { spy, stub } from "https://deno.land/x/mock@0.14.0/mock.ts"; | ||
import { spy, stub } from "https://deno.land/x/mock@0.15.0/mock.ts"; | ||
// Import from GitHub | ||
import { | ||
spy, | ||
stub, | ||
} from "https://raw.githubusercontent.com/udibo/mock/0.14.0/mock.ts"; | ||
} from "https://raw.githubusercontent.com/udibo/mock/0.15.0/mock.ts"; | ||
``` | ||
|
||
#### Sub-modules | ||
|
@@ -69,15 +69,15 @@ If a Node.js package has the type "module" specified in its package.json file, | |
the JavaScript bundle can be imported as a `.js` file. | ||
|
||
```js | ||
import { spy, stub } from "./mock_0.14.0.js"; | ||
import { spy, stub } from "./mock_0.15.0.js"; | ||
``` | ||
|
||
The default type for Node.js packages is "commonjs". To import the bundle into a | ||
commonjs package, the file extension of the JavaScript bundle must be changed | ||
from `.js` to `.mjs`. | ||
|
||
```js | ||
import { spy, stub } from "./mock_0.14.0.mjs"; | ||
import { spy, stub } from "./mock_0.15.0.mjs"; | ||
``` | ||
|
||
See [Node.js Documentation](https://nodejs.org/api/esm.html) for more | ||
|
@@ -96,15 +96,15 @@ modules must have the type attribute set to "module". | |
|
||
```js | ||
// main.js | ||
import { spy, stub } from "./mock_0.14.0.js"; | ||
import { spy, stub } from "./mock_0.15.0.js"; | ||
``` | ||
|
||
You can also embed a module script directly into an HTML file by placing the | ||
JavaScript code within the body of the script tag. | ||
|
||
```html | ||
<script type="module"> | ||
import { spy, stub } from "./mock_0.14.0.js"; | ||
import { spy, stub } from "./mock_0.15.0.js"; | ||
</script> | ||
``` | ||
|
||
|
@@ -120,7 +120,7 @@ a try block then restore the function in a finally block to ensure the original | |
instance method is restored before continuing to other tests. The same applies | ||
when using fake time. | ||
|
||
See [deno docs](https://doc.deno.land/https/deno.land/x/mock@0.14.0/mod.ts) for | ||
See [deno docs](https://doc.deno.land/https/deno.land/x/mock@0.15.0/mod.ts) for | ||
more information. | ||
|
||
### Spy | ||
|
@@ -136,7 +136,7 @@ for any calls made to it. | |
|
||
```ts | ||
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts"; | ||
import { assertSpyCall, spy } from "https://deno.land/x/mock@0.14.0/mod.ts"; | ||
import { assertSpyCall, spy } from "https://deno.land/x/mock@0.15.0/mod.ts"; | ||
|
||
function add( | ||
a: number, | ||
|
@@ -167,7 +167,7 @@ import { | |
assertSpyCall, | ||
assertSpyCalls, | ||
spy, | ||
} from "https://deno.land/x/mock@0.14.0/mod.ts"; | ||
} from "https://deno.land/x/mock@0.15.0/mod.ts"; | ||
|
||
function filter<T>(values: T[], callback: (value: T) => boolean): any[] { | ||
return values.filter(callback); | ||
|
@@ -202,7 +202,7 @@ import { | |
assertSpyCall, | ||
assertSpyCalls, | ||
spy, | ||
} from "https://deno.land/x/mock@0.14.0/mod.ts"; | ||
} from "https://deno.land/x/mock@0.15.0/mod.ts"; | ||
|
||
class Database { | ||
// deno-lint-ignore no-explicit-any | ||
|
@@ -293,7 +293,7 @@ import { | |
assertSpyCall, | ||
assertSpyCalls, | ||
stub, | ||
} from "https://deno.land/x/mock@0.14.0/mod.ts"; | ||
} from "https://deno.land/x/mock@0.15.0/mod.ts"; | ||
|
||
class Cat { | ||
action(name: string): any { | ||
|
@@ -345,7 +345,7 @@ import { | |
assertSpyCalls, | ||
resolvesNext, | ||
stub, | ||
} from "https://deno.land/x/mock@0.14.0/mod.ts"; | ||
} from "https://deno.land/x/mock@0.15.0/mod.ts"; | ||
|
||
class Database { | ||
query(_query: string, _params: unknown[]): Promise<unknown[][]> { | ||
|
@@ -427,7 +427,7 @@ import { | |
FakeTime, | ||
Spy, | ||
spy, | ||
} from "https://deno.land/x/mock@0.14.0/mod.ts"; | ||
} from "https://deno.land/x/mock@0.15.0/mod.ts"; | ||
|
||
function secondInterval(cb: () => void): void { | ||
setInterval(cb, 1000); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters