test/interpreter/test_function.rb in qlang-0.0.27182123 vs test/interpreter/test_function.rb in qlang-0.0.27182124
- old
+ new
@@ -1,9 +1,8 @@
require 'minitest_helper'
class TestFunction < TestInterpreterBase
def setup
-
end
def test_general
assert_def_func('f(x, y) = x + y', 'x + y')
assert_cal_func('f( 4, 5 )', '9.0')