mirror of
https://github.com/MontFerret/ferret.git
synced 2025-11-27 22:08:15 +02:00
30 lines
652 B
Go
30 lines
652 B
Go
|
|
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 TestFloor(t *testing.T) {
|
||
|
|
Convey("Should return a value", t, func() {
|
||
|
|
out, err := math.Floor(context.Background(), values.NewFloat(2.49))
|
||
|
|
|
||
|
|
So(err, ShouldBeNil)
|
||
|
|
So(out, ShouldEqual, 2)
|
||
|
|
|
||
|
|
out, err = math.Floor(context.Background(), values.NewFloat(2.50))
|
||
|
|
|
||
|
|
So(err, ShouldBeNil)
|
||
|
|
So(out, ShouldEqual, 2)
|
||
|
|
|
||
|
|
out, err = math.Floor(context.Background(), values.NewFloat(-2.50))
|
||
|
|
|
||
|
|
So(err, ShouldBeNil)
|
||
|
|
So(out.Unwrap(), ShouldEqual, -3)
|
||
|
|
})
|
||
|
|
}
|