2016-06-28 13:39:49 -04:00
|
|
|
// Package checker provides Docker specific implementations of the go-check.Checker interface.
|
2018-02-05 16:05:59 -05:00
|
|
|
package checker // import "github.com/docker/docker/integration-cli/checker"
|
2015-09-03 18:55:52 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/go-check/check"
|
2015-10-17 07:41:44 -04:00
|
|
|
"github.com/vdemeester/shakers"
|
2015-09-03 18:55:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// As a commodity, we bring all check.Checker variables into the current namespace to avoid having
|
|
|
|
// to think about check.X versus checker.X.
|
|
|
|
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
|
|
|
|
|
2015-10-17 07:41:44 -04:00
|
|
|
Contains = shakers.Contains
|
|
|
|
ContainsAny = shakers.ContainsAny
|
|
|
|
Count = shakers.Count
|
|
|
|
Equals = shakers.Equals
|
|
|
|
EqualFold = shakers.EqualFold
|
|
|
|
False = shakers.False
|
|
|
|
GreaterOrEqualThan = shakers.GreaterOrEqualThan
|
|
|
|
GreaterThan = shakers.GreaterThan
|
|
|
|
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
|
|
|
|
LessThan = shakers.LessThan
|
|
|
|
TimeEquals = shakers.TimeEquals
|
|
|
|
True = shakers.True
|
|
|
|
TimeIgnore = shakers.TimeIgnore
|
|
|
|
)
|