Update go dependencies
This commit is contained in:
parent
f9624cbe46
commit
307bf76454
280 changed files with 54728 additions and 2991 deletions
82
vendor/gopkg.in/gavv/httpexpect.v2/boolean.go
generated
vendored
Normal file
82
vendor/gopkg.in/gavv/httpexpect.v2/boolean.go
generated
vendored
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
package httpexpect
|
||||
|
||||
// Boolean provides methods to inspect attached bool value
|
||||
// (Go representation of JSON boolean).
|
||||
type Boolean struct {
|
||||
chain chain
|
||||
value bool
|
||||
}
|
||||
|
||||
// NewBoolean returns a new Boolean given a reporter used to report
|
||||
// failures and value to be inspected.
|
||||
//
|
||||
// reporter should not be nil.
|
||||
//
|
||||
// Example:
|
||||
// boolean := NewBoolean(t, true)
|
||||
func NewBoolean(reporter Reporter, value bool) *Boolean {
|
||||
return &Boolean{makeChain(reporter), value}
|
||||
}
|
||||
|
||||
// Raw returns underlying value attached to Boolean.
|
||||
// This is the value originally passed to NewBoolean.
|
||||
//
|
||||
// Example:
|
||||
// boolean := NewBoolean(t, true)
|
||||
// assert.Equal(t, true, boolean.Raw())
|
||||
func (b *Boolean) Raw() bool {
|
||||
return b.value
|
||||
}
|
||||
|
||||
// Path is similar to Value.Path.
|
||||
func (b *Boolean) Path(path string) *Value {
|
||||
return getPath(&b.chain, b.value, path)
|
||||
}
|
||||
|
||||
// Schema is similar to Value.Schema.
|
||||
func (b *Boolean) Schema(schema interface{}) *Boolean {
|
||||
checkSchema(&b.chain, b.value, schema)
|
||||
return b
|
||||
}
|
||||
|
||||
// Equal succeeds if boolean is equal to given value.
|
||||
//
|
||||
// Example:
|
||||
// boolean := NewBoolean(t, true)
|
||||
// boolean.Equal(true)
|
||||
func (b *Boolean) Equal(value bool) *Boolean {
|
||||
if !(b.value == value) {
|
||||
b.chain.fail("expected boolean == %v, but got %v", value, b.value)
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
// NotEqual succeeds if boolean is not equal to given value.
|
||||
//
|
||||
// Example:
|
||||
// boolean := NewBoolean(t, true)
|
||||
// boolean.NotEqual(false)
|
||||
func (b *Boolean) NotEqual(value bool) *Boolean {
|
||||
if !(b.value != value) {
|
||||
b.chain.fail("expected boolean != %v, but got %v", value, b.value)
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
// True succeeds if boolean is true.
|
||||
//
|
||||
// Example:
|
||||
// boolean := NewBoolean(t, true)
|
||||
// boolean.True()
|
||||
func (b *Boolean) True() *Boolean {
|
||||
return b.Equal(true)
|
||||
}
|
||||
|
||||
// False succeeds if boolean is false.
|
||||
//
|
||||
// Example:
|
||||
// boolean := NewBoolean(t, false)
|
||||
// boolean.False()
|
||||
func (b *Boolean) False() *Boolean {
|
||||
return b.Equal(false)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue