rubyx/test/ruby/test_class_statement3.rb
Torsten Rüger d1f8733623 Rename Vool to Sol
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
2019-10-04 00:38:47 +03:00

33 lines
824 B
Ruby

require_relative "helper"
module Ruby
class TestClassStatementTransformList < MiniTest::Test
include AttributeTests
def attr_def
"attr :page , :size"
end
def test_method_len
assert_equal 4 , @sol.body.length , "2 setters, 2 getters"
end
def test_setter
assert_equal Sol::MethodExpression , setter.class
end
def test_setter_assign
assert_equal Sol::Statements , setter.body.class
assert_equal Sol::IvarAssignment , setter.body.first.class
end
def test_setter_return
assert_equal Sol::Statements , setter.body.class
assert_equal Sol::ReturnStatement , setter.body.last.class
end
def test_setter_name
assert_equal :size= , setter.name
end
def test_setter_args
assert_equal [:val] , setter.args
end
end
end