class EvalHelpersProcBlockAndImplicitArgumentsTest

Public Instance Methods

setup() click to toggle source
# File test/unit/eval_helpers_test.rb, line 201
def setup
  @object = Object.new
  @proc = lambda {|*args| args}
end
test_should_call_method_on_object_with_all_arguments_and_block() click to toggle source
# File test/unit/eval_helpers_test.rb, line 206
def test_should_call_method_on_object_with_all_arguments_and_block
  block = lambda { true }
  assert_equal [@object, 1, 2, 3, block], evaluate_method(@object, @proc, 1, 2, 3, &block)
end