mirror of
https://github.com/MontFerret/ferret.git
synced 2025-01-22 03:39:08 +02:00
24d8eedd4c
* Added release notes * #509 fixedOCOD typo * Updated values * Updated comments * Changed stdlib docs format * Changed format of array in docs * Use 'any' instead of 'value' in docs * New format for optional params * Updated docs for testing package * Added namespace information
25 lines
617 B
Go
25 lines
617 B
Go
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"
|
|
)
|
|
|
|
// NONE asserts that value is none.
|
|
// @param {Any} actual - Value to test.
|
|
// @param {String} [message] - Message to display on error.
|
|
var None = base.Assertion{
|
|
DefaultMessage: func(args []core.Value) string {
|
|
return fmt.Sprintf("be %s", base.FormatValue(values.None))
|
|
},
|
|
MinArgs: 1,
|
|
MaxArgs: 2,
|
|
Fn: func(ctx context.Context, args []core.Value) (bool, error) {
|
|
return args[0] == values.None, nil
|
|
},
|
|
}
|