test/interpreter/test_function.rb in hilbert-0.0.2700100 vs test/interpreter/test_function.rb in hilbert-0.0.2700110
- old
+ new
@@ -38,7 +38,10 @@
assert_def_func('f(x) = cos(x)', 'cos( x )')
assert_cal_func('f(pi)', '-1.0')
assert_def_func('f(x) = log(x)', 'log( x )')
assert_cal_func('f(e)', '1.0')
+
+ assert_def_func('f(x) = cos(x)', 'cos( x )')
+ assert_cal_func('f(pi/2.0)', '0.0')
end
end