Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 332f424

Browse files
authored
Update README.md
1 parent ffe779d commit 332f424

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# fluentassert
22

3+
> [!CAUTION]
4+
> [Avoid using assertion libraries](https://go.dev/wiki/TestComments#assert-libraries).
5+
> Instead, use [`go-cmp`](https://github.com/google/go-cmp)
6+
> and write custom test helpers.
7+
> Using the popular [`testify`](https://github.com/stretchr/testify)
8+
> may be also an acceptable choice,
9+
> especially together with [`testifylint`](https://github.com/Antonboom/testifylint)
10+
> to avoid common mistakes.
11+
> Use this library if you still want to.
12+
> Consider yourself warned.
13+
314
> Extensible, type-safe, fluent assertion Go library.
415
516
[![Go Reference](https://pkg.go.dev/badge/github.com/fluentassert/verify.svg)](https://pkg.go.dev/github.com/fluentassert/verify)
@@ -22,17 +33,6 @@ The generics (type parameters) make the usage type-safe.
2233

2334
The library is [extensible](#extensibility) by design.
2435

25-
> [!CAUTION]
26-
> [Avoid using assertion libraries](https://go.dev/wiki/TestComments#assert-libraries).
27-
> Instead, use [`go-cmp`](https://github.com/google/go-cmp)
28-
> and write custom test helpers.
29-
> Using the popular [`testify`](https://github.com/stretchr/testify)
30-
> may be also an acceptable choice,
31-
> especially together with [`testifylint`](https://github.com/Antonboom/testifylint)
32-
> to avoid common mistakes.
33-
> Use this library if you still want to.
34-
> Consider yourself warned.
35-
3636
### Quick start
3737

3838
```go

0 commit comments

Comments
 (0)