Torsten Rüger
d1f8733623
Simple is really the descriptive name for the layer Sure, it is "virtual" but that is not as important as the fact that it is simple (or simplified) Also objct (based really) is better, since orientated implies it is a little like that, but only orientated, not really it. Sol only has objects, nothing else Just cause i was renaming anyway
34 lines
788 B
Ruby
34 lines
788 B
Ruby
require_relative "helper"
|
|
|
|
module Ruby
|
|
class TestSolCallMulti2 < MiniTest::Test
|
|
include RubyTests
|
|
|
|
include RubyTests
|
|
def setup
|
|
@lst = compile( "@foo = a.call(b)").to_sol
|
|
end
|
|
def test_class
|
|
assert_equal Sol::Statements , @lst.class
|
|
end
|
|
def test_first_class
|
|
assert_equal Sol::LocalAssignment , @lst[0].class
|
|
end
|
|
def test_first_name
|
|
assert @lst[0].name.to_s.start_with?("tmp_")
|
|
end
|
|
def test_second_class
|
|
assert_equal Sol::LocalAssignment , @lst[1].class
|
|
end
|
|
def test_second_name
|
|
assert @lst[1].name.to_s.start_with?("tmp_")
|
|
end
|
|
def test_last_class
|
|
assert_equal Sol::IvarAssignment , @lst[2].class
|
|
end
|
|
def test_second_name
|
|
assert_equal :foo, @lst[2].name
|
|
end
|
|
end
|
|
end
|