Files
regorus/tests/interpreter/cases/builtins/numbers/ceil.yaml
Anand Krishnamoorthi 6b87e99fb9 Tests for numbers builtins
Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
2023-02-28 09:38:40 +05:30

35 lines
669 B
YAML

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cases:
- note: ceil
data: {}
modules:
- |
package test
x = [ceil(9.1), ceil(-9.1), ceil(9), ceil(-9)]
# Undefined
y { false }
z = ceil(y)
query: data.test
want_result:
x: [10, -9, 9, -9]
- note: extra-args
data: {}
modules:
- |
package test
x = ceil(-9, 10)
query: data.test.x
error: "`ceil` expects 1 argument"
- note: invalid-type
data: {}
modules:
- |
package test
x = ceil("-9")
query: data.test.x
error: "`ceil` expects numeric argument"