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

30 lines
668 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 TestCos(t *testing.T) {
Convey("Should return a value", t, func() {
out, err := math.Cos(context.Background(), values.NewFloat(1))
So(err, ShouldBeNil)
So(out, ShouldEqual, 0.5403023058681398)
out, err = math.Cos(context.Background(), values.NewFloat(0))
So(err, ShouldBeNil)
So(out, ShouldEqual, 1)
out, err = math.Cos(context.Background(), values.NewFloat(-3.141592653589783))
So(err, ShouldBeNil)
So(out.Unwrap(), ShouldEqual, -1)
})
}