summaryrefslogtreecommitdiff
path: root/test/ruby/test_not.rb
blob: 486075bf83739327f384da6893ef98529e477e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'test/unit'

class TestIfunless < Test::Unit::TestCase
  def test_not_with_grouped_expression
    assert_equal(false, (not (true)))
    assert_equal(true, (not (false)))
  end

  def test_not_with_empty_grouped_expression
    assert_equal(true, (not ()))
  end
end