0.1.0
First release after the experiential phase.
Added
- Add
f.Assert
that can be used instead oft.Error
methods. - Add
f.Require
that can be used instead oft.Fatal
methods. - Add
Should
assertion that can be used with custom predicates. - Add
Eq
assertion that checks ifgot
is deeply equal towant
. - Add
Nil
assertion that checks ifgot
isnil
. - Add
Err
assertion that checks ifgot
is anerror
. - Add
Panic
assertion that checks if callinggot
results in a panic. - Add
NoPanic
assertion that checks if callinggot
returns without panicking.