2018-06-29 21:46:39 +02:00
|
|
|
require_relative "helper"
|
2017-04-04 17:35:15 +02:00
|
|
|
|
2018-07-19 13:46:51 +02:00
|
|
|
module Ruby
|
2018-07-07 16:57:46 +02:00
|
|
|
class TestLogicalX < MiniTest::Test
|
2018-06-29 21:46:39 +02:00
|
|
|
include RubyTests
|
2017-04-04 17:35:15 +02:00
|
|
|
|
|
|
|
def simple
|
2018-06-29 21:46:39 +02:00
|
|
|
compile( "@a and @b")
|
2017-04-04 17:35:15 +02:00
|
|
|
end
|
|
|
|
def test_simple
|
|
|
|
lst = simple
|
|
|
|
assert_equal LogicalStatement , lst.class
|
|
|
|
end
|
|
|
|
def test_simple_name
|
|
|
|
lst = simple
|
|
|
|
assert_equal :and , lst.name
|
|
|
|
end
|
|
|
|
def test_simple_left
|
|
|
|
lst = simple
|
|
|
|
assert_equal InstanceVariable , lst.left.class
|
|
|
|
end
|
|
|
|
def test_simple_right
|
|
|
|
lst = simple
|
|
|
|
assert_equal InstanceVariable , lst.right.class
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_or
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "@a or @b")
|
2017-04-04 17:35:15 +02:00
|
|
|
assert_equal :or , lst.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_or2
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "@a || @b")
|
2017-04-04 17:35:15 +02:00
|
|
|
assert_equal :or , lst.name
|
|
|
|
end
|
|
|
|
def test_and2
|
2018-06-29 21:46:39 +02:00
|
|
|
lst = compile( "@a && @b")
|
2017-04-04 17:35:15 +02:00
|
|
|
assert_equal :and , lst.name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|