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

39 lines
851 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 TestAbs(t *testing.T) {
Convey("Should return absolute value", t, func() {
Convey("When value is int", func() {
out, err := math.Abs(context.Background(), values.NewInt(-5))
So(err, ShouldBeNil)
So(out, ShouldEqual, 5)
out, err = math.Abs(context.Background(), values.NewInt(3))
So(err, ShouldBeNil)
So(out, ShouldEqual, 3)
})
Convey("When value is float", func() {
out, err := math.Abs(context.Background(), values.NewFloat(-5))
So(err, ShouldBeNil)
So(out, ShouldEqual, 5)
out, err = math.Abs(context.Background(), values.NewFloat(5.1))
So(err, ShouldBeNil)
So(out, ShouldEqual, 5.1)
})
})
}