2018-04-27 08:59:01 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Vool
|
|
|
|
module Norm
|
|
|
|
|
|
|
|
class TestSendSimple < NormTest
|
|
|
|
def test_simple
|
|
|
|
lst = normalize("foo")
|
|
|
|
assert_equal SendStatement , lst.class
|
|
|
|
end
|
|
|
|
def test_constant_args
|
|
|
|
lst = normalize("foo(1,2)")
|
|
|
|
assert_equal SendStatement , lst.class
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class TestSendSend < NormTest
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@stm = normalize("foo(1 - 2)")
|
|
|
|
end
|
|
|
|
def test_many
|
|
|
|
assert_equal Statements , @stm.class
|
|
|
|
end
|
|
|
|
def test_assignment
|
|
|
|
assert_equal LocalAssignment , @stm.first.class
|
|
|
|
end
|
|
|
|
def test_name
|
|
|
|
assert @stm.first.name.to_s.start_with?("tmp_") , @stm.first.name
|
|
|
|
end
|
|
|
|
def test_assigned
|
|
|
|
assert_equal SendStatement , @stm.first.value.class
|
|
|
|
end
|
2018-04-27 20:55:41 +02:00
|
|
|
def test_length
|
|
|
|
assert_equal 2 , @stm.length
|
|
|
|
end
|
|
|
|
def test_last_class
|
|
|
|
assert_equal SendStatement , @stm.last.class
|
|
|
|
end
|
|
|
|
def test_last_arg
|
|
|
|
assert_equal LocalVariable , @stm.last.arguments.first.class
|
|
|
|
end
|
|
|
|
def test_last_send
|
|
|
|
assert_equal :foo , @stm.last.name
|
|
|
|
end
|
2018-04-27 08:59:01 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|