* 2022-01-18 [ci skip]
[ruby-80x24.org.git] / test / ruby / test_condition.rb
blobab0ffc4b6a25597d1cb67b621dd9ed799173672b
1 # frozen_string_literal: false
2 require 'test/unit'
4 class TestCondition < Test::Unit::TestCase
6   # [should] first test to see if we can run the tests.
8   def test_condition
9     $x = '0';
11     $x == $x && assert(true)
12     $x != $x && assert(false)
13     $x == $x || assert(false)
14     $x != $x || assert(true)
16   end
17 end