Documentation ¶
Overview ¶
Package checker provide Docker specific implementations of the go-check.Checker interface.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( DeepEquals = check.DeepEquals Equals = check.Equals 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 )
As a commodity, we bring all check.Checker variables into the current namespace to avoid having to think about check.X versus checker.X.
View Source
var Contains check.Checker = &containsChecker{ &check.CheckerInfo{ Name: "Contains", Params: []string{"value", "substring"}, }, }
Contains checker verifies that string value contains a substring.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.