Add more sqrt tests

This commit is contained in:
Justin Ethier 2024-03-12 19:22:09 -07:00
parent 887e1e5aa9
commit 512e962a9b

View file

@ -105,9 +105,9 @@
(test-group
"sqrt"
(test #t (sqrt -1))
(test #t (sqrt -1.0))
; TODO: (test 2 (sqrt 4))
(test 1i (sqrt -1))
(test 1i (sqrt -1.0))
(test 2 (sqrt 4))
(test 2.0 (sqrt 4.0))
(test 2i (sqrt -4.0))
)