mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
22 lines
439 B
Go
22 lines
439 B
Go
package core_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestValidateArgs(t *testing.T) {
|
|
Convey("Should match", t, func() {
|
|
a := []core.Value{values.NewInt(1), values.NewInt(2)}
|
|
|
|
e := core.ValidateArgs(a, 1, 2)
|
|
So(e, ShouldBeNil)
|
|
|
|
e = core.ValidateArgs(a, 3, 4)
|
|
So(e, ShouldNotBeNil)
|
|
})
|
|
}
|