1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-19 21:28:32 +02:00

31 lines
786 B
Go
Raw Normal View History

package testing
import (
"context"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
"github.com/MontFerret/ferret/pkg/stdlib/collections"
"github.com/MontFerret/ferret/pkg/stdlib/testing/base"
)
// Empty asserts that the target does not contain any values.
// @params actual (Measurable|Binary|Object|Array|String) - Value to test.
// @params message (String, optional) - Message to display on error.
var Empty = base.Assertion{
DefaultMessage: func(_ []core.Value) string {
return "be empty"
},
MinArgs: 1,
MaxArgs: 2,
Fn: func(ctx context.Context, args []core.Value) (bool, error) {
size, err := collections.Length(ctx, args[0])
if err != nil {
return false, err
}
return values.ToInt(size) == 0, nil
},
}