rubyx/test/ruby/test_class_statement.rb

45 lines
1020 B
Ruby
Raw Normal View History

require_relative "helper"
module Ruby
2018-07-19 15:30:36 +02:00
class TestEmptyClassStatement < MiniTest::Test
include RubyTests
def setup
input = "class Tryout < Base;end"
@lst = compile( input )
end
def test_compile_class
assert_equal ClassStatement , @lst.class
end
def test_compile_class_name
assert_equal :Tryout , @lst.name
end
def test_compile_class_super
assert_equal :Base , @lst.super_class_name
end
2017-04-01 15:27:32 +02:00
def test_compile_class_body
assert @lst.body.empty?
end
end
2018-07-19 15:30:36 +02:00
class TestBasicClassStatement < MiniTest::Test
include ScopeHelper
include RubyTests
def test_compile_one_method
lst = compile( as_test_main("@ivar = 4") )
assert_equal IvarAssignment , lst.body.first.body.class
end
def test_compile_two_stats
lst = compile( as_test_main("false; true;") )
assert_equal ScopeStatement , lst.body.first.body.class
assert_equal TrueConstant , lst.body.first.body.statements[1].class
2017-04-01 15:27:32 +02:00
end
end
end