Skip to content

Commit 178902b

Browse files
PR update
1 parent 464ea71 commit 178902b

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

README.md

+6-9
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ Table of Contents
1414
* [Docker](#docker)
1515
* [Homebrew](#homebrew)
1616
* [go install](#go-install)
17-
- [Requirement](#requirement)
1817
- [Examples](#examples)
1918
+ [Simplest case](#simplest-case)
19+
+ [Function type case](#function-type-case)
2020
+ [Next level case](#next-level-case)
21+
+ [Note](#note)
2122
- [Return Value Provider Functions](#return-value-provider-functions)
2223
+ [Requirements](#requirements)
2324
+ [Notes](#notes)
@@ -42,8 +43,6 @@ Visit the [releases page](https://github.com/vektra/mockery/releases) to downloa
4243

4344
Use the [Docker image](https://hub.docker.com/r/vektra/mockery)
4445

45-
Get mockery verion:
46-
4746
docker pull vektra/mockery
4847

4948
Generate all the mocks for your project:
@@ -65,11 +64,6 @@ Alternatively, you can use the go install method to compile the project using yo
6564

6665
go install github.com/vektra/mockery/v2@latest
6766

68-
Requirement
69-
-----------
70-
71-
For mockery to correctly generate mocks, the command has to be run on a module (i.e. your project has to have a go.mod file)
72-
7367
Examples
7468
--------
7569

@@ -234,6 +228,10 @@ func main() {
234228
}
235229
```
236230

231+
#### Note
232+
233+
For mockery to correctly generate mocks, the command has to be run on a module (i.e. your project has to have a go.mod file)
234+
237235

238236
Return Value Provider Functions
239237
--------------------------------
@@ -371,7 +369,6 @@ The following descriptions provide additional elaboration on a few common parame
371369
| `--print` | Use `mockery --print` to have the resulting code printed out instead of written to disk. |
372370
| `--exported` | Use `mockery --exported` to generate public mocks for private interfaces. |
373371
| `--with-expecter` | Use `mockery --with-expecter` to generate `EXPECT()` methods for your mocks. This is the preferred way to setup your mocks. |
374-
| `--log-level` | Use `--log-level` to generate useful logs. Possible values are `trace`, `debug`, `info`, `warn`, `error`, `fatal`, `panic` |
375372

376373
Mocking interfaces in `main`
377374
----------------------------

0 commit comments

Comments
 (0)