2018-06-26 19:28:27 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2018-07-19 13:46:51 +02:00
|
|
|
module Ruby
|
2018-07-19 15:22:44 +02:00
|
|
|
class TestBlockStatement < MiniTest::Test
|
2018-06-29 21:46:39 +02:00
|
|
|
include RubyTests
|
2018-07-07 16:57:46 +02:00
|
|
|
|
2018-06-26 19:28:27 +02:00
|
|
|
def setup()
|
|
|
|
input = "plus_one{|arg1| arg1 + 1 } "
|
2018-06-29 21:46:39 +02:00
|
|
|
@lst = compile( input )
|
2018-06-26 19:28:27 +02:00
|
|
|
end
|
|
|
|
def test_block
|
2018-07-19 15:22:44 +02:00
|
|
|
assert_equal BlockStatement , @lst.class
|
|
|
|
end
|
|
|
|
def test_send
|
|
|
|
assert_equal SendStatement , @lst.send.class
|
2018-06-26 19:28:27 +02:00
|
|
|
end
|
|
|
|
def test_method_name
|
2018-07-19 15:22:44 +02:00
|
|
|
assert_equal :plus_one , @lst.send.name
|
2018-06-26 19:28:27 +02:00
|
|
|
end
|
|
|
|
def test_block_args
|
2018-07-19 15:22:44 +02:00
|
|
|
assert_equal [:arg1] , @lst.args
|
2018-06-26 19:28:27 +02:00
|
|
|
end
|
|
|
|
def test_block_body
|
2018-07-19 15:22:44 +02:00
|
|
|
assert_equal SendStatement , @lst.body.class
|
|
|
|
assert_equal 1 , @lst.body.arguments.length
|
2018-06-26 19:28:27 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|