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

25 lines
647 B
Go
Raw Normal View History

package testing
import (
"context"
"fmt"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/stdlib/testing/base"
)
// LT asserts that an actual value is lesser than an expected one.
// @param {Any} actual - Actual value.
// @param {Any} expected - Expected value.
// @param {String} [message] - Message to display on error.
var Lt = base.Assertion{
DefaultMessage: func(args []core.Value) string {
return fmt.Sprintf("be %s %s", base.LessOp, base.FormatValue(args[1]))
},
MinArgs: 2,
MaxArgs: 3,
Fn: func(ctx context.Context, args []core.Value) (bool, error) {
return base.LessOp.Compare(args)
},
}