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

27 lines
474 B
YAML

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cases:
- note: mul
data: {}
modules:
- |
package test
x = 3 * -1 * 4.5
# Undefined
y { false }
a = 1 * y
b = y * 1
query: data.test
want_result:
x: -13.5
- note: non-numeric
data: {}
modules:
- |
package test
x = "1" * 9
query: data.test.x
error: "`mul` expects numeric argument."