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

25 lines
629 B
Go
Raw Normal View History

package testing
import (
"context"
"fmt"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
"github.com/MontFerret/ferret/pkg/stdlib/testing/base"
)
// True asserts that value is true.
// @params actual (Mixed) - Value to test.
// @params message (String, optional) - Message to display on error.
var True = base.Assertion{
DefaultMessage: func(args []core.Value) string {
return fmt.Sprintf("be %s", base.FormatValue(values.True))
},
MinArgs: 1,
MaxArgs: 2,
Fn: func(ctx context.Context, args []core.Value) (bool, error) {
return args[0] == values.True, nil
},
}