mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-19 21:28:32 +02:00
24 lines
593 B
Go
24 lines
593 B
Go
|
package testing
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
||
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
||
|
"github.com/MontFerret/ferret/pkg/stdlib/testing/base"
|
||
|
)
|
||
|
|
||
|
// Int asserts that value is a int type.
|
||
|
// @params actual (Mixed) - Actual value.
|
||
|
// @params message (String, optional) - Message to display on error.
|
||
|
var Int = base.Assertion{
|
||
|
DefaultMessage: func(args []core.Value) string {
|
||
|
return "be int"
|
||
|
},
|
||
|
MinArgs: 1,
|
||
|
MaxArgs: 2,
|
||
|
Fn: func(ctx context.Context, args []core.Value) (bool, error) {
|
||
|
return args[0].Type() == types.Int, nil
|
||
|
},
|
||
|
}
|