mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6345208b9b
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
24 lines
716 B
Go
24 lines
716 B
Go
// Package checker provides Docker specific implementations of the go-check.Checker interface.
|
|
package checker // import "github.com/docker/docker/integration-cli/checker"
|
|
|
|
import (
|
|
"github.com/go-check/check"
|
|
"github.com/vdemeester/shakers"
|
|
)
|
|
|
|
// 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
|
|
HasLen = check.HasLen
|
|
IsNil = check.IsNil
|
|
Matches = check.Matches
|
|
Not = check.Not
|
|
NotNil = check.NotNil
|
|
|
|
Contains = shakers.Contains
|
|
Equals = shakers.Equals
|
|
False = shakers.False
|
|
GreaterThan = shakers.GreaterThan
|
|
True = shakers.True
|
|
)
|