|
@@ -9,38 +9,20 @@ import (
|
|
// As a commodity, we bring all check.Checker variables into the current namespace to avoid having
|
|
// As a commodity, we bring all check.Checker variables into the current namespace to avoid having
|
|
// to think about check.X versus checker.X.
|
|
// to think about check.X versus checker.X.
|
|
var (
|
|
var (
|
|
- DeepEquals = check.DeepEquals
|
|
|
|
- ErrorMatches = check.ErrorMatches
|
|
|
|
- FitsTypeOf = check.FitsTypeOf
|
|
|
|
- HasLen = check.HasLen
|
|
|
|
- Implements = check.Implements
|
|
|
|
- IsNil = check.IsNil
|
|
|
|
- Matches = check.Matches
|
|
|
|
- Not = check.Not
|
|
|
|
- NotNil = check.NotNil
|
|
|
|
- PanicMatches = check.PanicMatches
|
|
|
|
- Panics = check.Panics
|
|
|
|
|
|
+ DeepEquals = check.DeepEquals
|
|
|
|
+ HasLen = check.HasLen
|
|
|
|
+ IsNil = check.IsNil
|
|
|
|
+ Matches = check.Matches
|
|
|
|
+ Not = check.Not
|
|
|
|
+ NotNil = check.NotNil
|
|
|
|
|
|
Contains = shakers.Contains
|
|
Contains = shakers.Contains
|
|
- ContainsAny = shakers.ContainsAny
|
|
|
|
Count = shakers.Count
|
|
Count = shakers.Count
|
|
Equals = shakers.Equals
|
|
Equals = shakers.Equals
|
|
- EqualFold = shakers.EqualFold
|
|
|
|
False = shakers.False
|
|
False = shakers.False
|
|
GreaterOrEqualThan = shakers.GreaterOrEqualThan
|
|
GreaterOrEqualThan = shakers.GreaterOrEqualThan
|
|
GreaterThan = shakers.GreaterThan
|
|
GreaterThan = shakers.GreaterThan
|
|
HasPrefix = shakers.HasPrefix
|
|
HasPrefix = shakers.HasPrefix
|
|
- HasSuffix = shakers.HasSuffix
|
|
|
|
- Index = shakers.Index
|
|
|
|
- IndexAny = shakers.IndexAny
|
|
|
|
- IsAfter = shakers.IsAfter
|
|
|
|
- IsBefore = shakers.IsBefore
|
|
|
|
- IsBetween = shakers.IsBetween
|
|
|
|
- IsLower = shakers.IsLower
|
|
|
|
- IsUpper = shakers.IsUpper
|
|
|
|
LessOrEqualThan = shakers.LessOrEqualThan
|
|
LessOrEqualThan = shakers.LessOrEqualThan
|
|
- LessThan = shakers.LessThan
|
|
|
|
- TimeEquals = shakers.TimeEquals
|
|
|
|
True = shakers.True
|
|
True = shakers.True
|
|
- TimeIgnore = shakers.TimeIgnore
|
|
|
|
)
|
|
)
|