# File test/src/functor_test.rb, line 33 def testCurry assert_equal(3, Plus.curry.call(1).call(2)) assert_equal(-1, Minus.curry.call(1).call(2)) end