1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/stdlib/math/exp_test.go

30 lines
688 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 TestExp(t *testing.T) {
Convey("Should return a value", t, func() {
out, err := math.Exp(context.Background(), values.NewFloat(1))
So(err, ShouldBeNil)
So(out, ShouldEqual, 2.718281828459045)
out, err = math.Exp(context.Background(), values.NewFloat(10))
So(err, ShouldBeNil)
So(out.Compare(values.NewFloat(22026.46579480671)) == 1, ShouldBeTrue)
out, err = math.Exp(context.Background(), values.NewFloat(0))
So(err, ShouldBeNil)
So(out, ShouldEqual, 1)
})
}