rubyx/test/ruby/test_assignment.rb

71 lines
1.6 KiB
Ruby
Raw Normal View History

require_relative "helper"
2017-04-02 11:59:07 +02:00
module Ruby
class TestAssignmentRuby < MiniTest::Test
include RubyTests
2017-04-02 11:59:07 +02:00
def test_local
lst = compile( "foo = bar")
2017-04-02 11:59:07 +02:00
assert_equal LocalAssignment , lst.class
end
def test_local_name
lst = compile( "foo = bar")
2017-04-02 11:59:07 +02:00
assert_equal :foo , lst.name
end
2017-04-04 17:10:28 +02:00
def test_instance
lst = compile( "@foo = bar")
assert_equal IvarAssignment , lst.class
2017-04-04 17:10:28 +02:00
end
def test_instance_name
lst = compile( "@foo = bar")
2017-04-04 17:10:28 +02:00
assert_equal :foo , lst.name
end
2017-09-10 12:33:32 +02:00
def test_const
lst = compile( "@foo = 5")
2017-09-10 12:33:32 +02:00
assert_equal IvarAssignment , lst.class
end
2018-07-20 12:43:37 +02:00
end
class TestAssignmentSolLocal < MiniTest::Test
2018-07-20 12:43:37 +02:00
include RubyTests
def setup
@lst = compile( "foo = bar").to_sol
end
def test_tos
assert_equal "foo = self.bar()" , @lst.to_s
end
2018-07-20 12:43:37 +02:00
def test_local
assert_equal Sol::LocalAssignment , @lst.class
end
def test_bar
assert_equal Sol::SendStatement , @lst.value.class
2018-07-20 12:43:37 +02:00
end
def test_local_name
assert_equal :foo , @lst.name
end
end
class TestAssignmentSolInst < MiniTest::Test
include RubyTests
def setup
@lst = compile( "@foo = bar").to_sol
2018-07-20 12:43:37 +02:00
end
def test_tos
assert_equal "@foo = self.bar()" , @lst.to_s
end
2018-07-20 12:43:37 +02:00
def test_instance
assert_equal Sol::IvarAssignment , @lst.class
2018-07-20 12:43:37 +02:00
end
def test_instance_name
assert_equal :foo , @lst.name
end
end
class TestAssignmentSolConst < MiniTest::Test
include RubyTests
def setup
@lst = compile( "foo = 5").to_sol
2018-07-20 12:43:37 +02:00
end
def test_const
assert_equal Sol::IntegerConstant , @lst.value.class
2018-07-20 12:43:37 +02:00
end
2017-04-02 11:59:07 +02:00
end
end