Sha256: 14f778cbf5cf7df5042332e454cf355596c41be1ac6633c193217314958a79e3

Contents?: true

Size: 1.88 KB

Versions: 44

Compression:

Stored size: 1.88 KB

Contents

# frozen_string_literal: true

# Copyright (c) 2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

require 'minitest/autorun'
require_relative '../lib/judges'
require_relative '../lib/judges/categories'

# Test.
# Author:: Yegor Bugayenko (yegor256@gmail.com)
# Copyright:: Copyright (c) 2024 Yegor Bugayenko
# License:: MIT
class TestCategories < Minitest::Test
  def test_basic
    cats = Judges::Categories.new(%w[foo bar], ['bad'])
    assert(cats.ok?(%w[foo other]))
    assert(cats.ok?(%w[other more bar]))
    assert(!cats.ok?(%w[bad other]))
    assert(!cats.ok?(['other']))
    assert(!cats.ok?('hey'))
    assert(!cats.ok?(nil))
  end

  def test_all_enabled
    cats = Judges::Categories.new([], ['bad'])
    assert(cats.ok?(nil))
    assert(cats.ok?('hey'))
    assert(cats.ok?(%w[foo other]))
    assert(cats.ok?(%w[other more bar]))
    assert(!cats.ok?(%w[bad other]))
  end
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
judges-0.27.0 test/test_categories.rb
judges-0.26.1 test/test_categories.rb
judges-0.26.0 test/test_categories.rb
judges-0.25.2 test/test_categories.rb
judges-0.25.1 test/test_categories.rb
judges-0.25.0 test/test_categories.rb
judges-0.24.0 test/test_categories.rb
judges-0.23.0 test/test_categories.rb
judges-0.22.1 test/test_categories.rb
judges-0.22.0 test/test_categories.rb
judges-0.21.0 test/test_categories.rb
judges-0.20.0 test/test_categories.rb
judges-0.19.0 test/test_categories.rb
judges-0.18.1 test/test_categories.rb
judges-0.18.0 test/test_categories.rb
judges-0.17.0 test/test_categories.rb
judges-0.16.0 test/test_categories.rb
judges-0.15.6 test/test_categories.rb
judges-0.15.5 test/test_categories.rb
judges-0.15.4 test/test_categories.rb