We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e533cd commit aa47d4eCopy full SHA for aa47d4e
tests/math-tests.ark
@@ -9,7 +9,9 @@
9
(test:eq (builtin__math:floor 5) (math:floor 5))
10
(test:eq (builtin__math:round 5) (math:round 5))
11
(test:eq (builtin__math:NaN? 5) (math:NaN? 5))
12
+ (test:expect (not (math:NaN? "hello")))
13
(test:eq (builtin__math:Inf? 5) (math:Inf? 5))
14
+ (test:expect (not (math:Inf? "hello")))
15
(test:eq builtin__math:pi math:pi)
16
(test:eq builtin__math:e math:e)
17
(test:eq builtin__math:tau math:tau)
0 commit comments