2018-06-29 22:46:39 +03:00
|
|
|
require_relative "helper"
|
2017-04-04 18:35:15 +03:00
|
|
|
|
2018-07-19 14:46:51 +03:00
|
|
|
module Ruby
|
2018-07-19 16:30:36 +03:00
|
|
|
class TestLogical < MiniTest::Test
|
2018-06-29 22:46:39 +03:00
|
|
|
include RubyTests
|
2017-04-04 18:35:15 +03:00
|
|
|
|
|
|
|
def simple
|
2018-06-29 22:46:39 +03:00
|
|
|
compile( "@a and @b")
|
2017-04-04 18:35:15 +03: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 22:46:39 +03:00
|
|
|
lst = compile( "@a or @b")
|
2017-04-04 18:35:15 +03:00
|
|
|
assert_equal :or , lst.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_or2
|
2018-06-29 22:46:39 +03:00
|
|
|
lst = compile( "@a || @b")
|
2017-04-04 18:35:15 +03:00
|
|
|
assert_equal :or , lst.name
|
|
|
|
end
|
|
|
|
def test_and2
|
2018-06-29 22:46:39 +03:00
|
|
|
lst = compile( "@a && @b")
|
2017-04-04 18:35:15 +03:00
|
|
|
assert_equal :and , lst.name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|