require_relative "helper" module Ruby class TestSendFoo < MiniTest::Test include RubyTests def setup @lst = compile( "foo") end def test_simple_class assert_equal SendStatement , @lst.class end def test_simple_name assert_equal :foo , @lst.name end def test_simple_receiver assert_equal SelfExpression , @lst.receiver.class end def test_simple_args assert_equal [] , @lst.arguments end end class TestSendBar < MiniTest::Test include RubyTests def setup @lst = compile( "bar(1)") end def test_one_arg assert_equal SendStatement , @lst.class end def test_one_arg_name assert_equal :bar , @lst.name end def test_one_arg_receiver assert_equal SelfExpression , @lst.receiver.class end def test_one_arg_args assert_equal 1 , @lst.arguments.first.value end end class TestSendSuper < MiniTest::Test include RubyTests def test_super0_receiver lst = compile( "super") assert_equal SuperExpression , lst.receiver.class end def test_super0 lst = compile( "super") assert_equal SendStatement , lst.class end def test_super_receiver lst = compile( "super(1)") assert_equal SuperExpression , lst.receiver.class end def test_super_args lst = compile( "super(1)") assert_equal 1 , lst.arguments.first.value end def test_super_name #is nil lst = compile( "super(1)") assert_nil lst.name end end end