rubyx/test/ruby/test_ruby_block_statement.rb
Torsten Rüger 3ddf2e3837 Redoing ruby block conversion
Since the block is actually a constant, it does not need assignment or special hoisting
Just use the send and stick the lambda in as last arg
2019-08-19 14:23:55 +03:00

50 lines
1.2 KiB
Ruby

require_relative "helper"
module Ruby
class TestBlockStatement < MiniTest::Test
include RubyTests
def setup()
input = "plus_one{|arg1| arg1 + 1 } "
@lst = compile( input )
end
def test_block
assert_equal RubyBlockStatement , @lst.class
end
def test_send
assert_equal SendStatement , @lst.send.class
end
def test_method_name
assert_equal :plus_one , @lst.send.name
end
def test_block_args
assert_equal [:arg1] , @lst.args
end
def test_block_body
assert_equal SendStatement , @lst.body.class
assert_equal 1 , @lst.body.arguments.length
end
end
class TestBlockStatementVool < MiniTest::Test
include RubyTests
def setup()
input = "plus_one{|arg1| arg1 + 1 } "
@lst = compile( input ).to_vool
end
def test_block
assert_equal Vool::SendStatement , @lst.class
end
def test_send_name
assert_equal :plus_one , @lst.name
end
def test_send_block_arg
assert_equal 1 , @lst.arguments.length
assert_equal Vool::LambdaExpression , @lst.arguments.first.class
end
def test_block_args
assert_equal [:arg1] , @lst.arguments.first.args
end
end
end