func()

in ops/ops.go [34:42]


func (o Operative) DoesNotExist() *testerror.Error {
	if o.Exist {
		return testerror.Newf(
			"%s: found when not expected",
			o.Reference,
		)
	}
	return nil
}