Open
Description
The wrappers add in commit 34c6fa2dc70986bccbbffcc6130f6920a924b075 - Greater, GreaterOrEqual, Less, LessOrEqual and Same - are not available after running dep ensure
.
// Some test file
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_Methods_Exist(t *testing.T) {
assert.Greater(t, 1, 0)
assert.GreaterOrEqual(t, 1, 0)
assert.Less(t, 0, 1)
assert.LessOrEqual(t, 0, 1)
assert.Same(t, 1, 1)
}
$ dep ensure
$ go test
> undefined: assert.Greater
> undefined: assert.GreaterOrEqual
...