rubyx/test/ruby/test_send_statement.rb

65 lines
1.5 KiB
Ruby
Raw Normal View History

require_relative "helper"
2017-04-02 11:57:05 +02:00
module Ruby
class TestSendFoo < MiniTest::Test
include RubyTests
def setup
@lst = compile( "foo")
end
def test_simple_class
assert_equal SendStatement , @lst.class
2017-04-02 11:57:05 +02:00
end
def test_simple_name
assert_equal :foo , @lst.name
2017-04-02 11:57:05 +02:00
end
def test_simple_receiver
assert_equal SelfExpression , @lst.receiver.class
2017-04-02 11:57:05 +02:00
end
def test_simple_args
assert_equal [] , @lst.arguments
end
end
class TestSendBar < MiniTest::Test
include RubyTests
def setup
@lst = compile( "bar(1)")
2017-04-02 11:57:05 +02:00
end
def test_one_arg
assert_equal SendStatement , @lst.class
2017-04-02 11:57:05 +02:00
end
def test_one_arg_name
assert_equal :bar , @lst.name
2017-04-02 11:57:05 +02:00
end
def test_one_arg_receiver
assert_equal SelfExpression , @lst.receiver.class
2017-04-02 11:57:05 +02:00
end
def test_one_arg_args
assert_equal 1 , @lst.arguments.first.value
2017-04-02 11:57:05 +02:00
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
2017-04-02 11:57:05 +02:00
end