1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
ferret/pkg/stdlib/math/sqrt_test.go

25 lines
532 B
Go
Raw Normal View History

package math_test
import (
"context"
"github.com/MontFerret/ferret/pkg/runtime/values"
"github.com/MontFerret/ferret/pkg/stdlib/math"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestSqrt(t *testing.T) {
Convey("Should return square value", t, func() {
out, err := math.Sqrt(context.Background(), values.NewFloat(9))
So(err, ShouldBeNil)
So(out, ShouldEqual, 3)
out, err = math.Sqrt(context.Background(), values.NewInt(2))
So(err, ShouldBeNil)
So(out, ShouldEqual, 1.4142135623730951)
})
}