Update deps

This commit is contained in:
Frank Denis 2021-07-03 10:56:53 +02:00
parent f033bb3034
commit 5a091c6da4
1997 changed files with 368830 additions and 2045 deletions

View file

@ -79,6 +79,11 @@
//
// t.Must(t.Nil(err))
//
// ★ You can turn all checks into assertions to stop test immediately:
//
// t = t.MustAll()
// t.Nil(err)
//
// ★ You can provide extra description to each check:
//
// t.Equal(got, want, "Just msg: will Print(), % isn't special")
@ -110,7 +115,9 @@
//
// There are few special functions (assertion, custom checkers, etc.).
//
// Error
// Must
// MustAll
// Should
// TODO
//