Sha256: d31e2325c26fa1cd074b53c9977850cd24359b3d4452a9b60b0f11c5c1b22271

Contents?: true

Size: 782 Bytes

Versions: 4

Compression:

Stored size: 782 Bytes

Contents

require 'facets/core/hash/has_keys'

class Hash

  # Returns true is hash has the given keys,
  # otherwise throws an ArgumentError.
  #
  #   h = { :a => 1, :b => 2 }
  #   h.assert_has_keys( :a )   #=> true
  #   h.assert_has_keys( :c )   #=> ArgumentError
  #
  def assert_has_keys(*check_keys)
    raise(ArgumentError, "does not have key(s)") unless has_keys?(*check_keys)
  end

end


#  _____         _
# |_   _|__  ___| |_
#   | |/ _ \/ __| __|
#   | |  __/\__ \ |_
#   |_|\___||___/\__|
#
=begin test

  require 'test/unit'

  class TCHash < Test::Unit::TestCase

    def test_assert_has_keys
      assert_nothing_raised { { :a=>1,:b=>2,:c=>3 }.assert_has_keys(:a,:b) }
      assert_raises( ArgumentError ) { { :a=>1,:b=>2,:c=>3 }.assert_has_keys(:d) }
    end

  end

=end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
facets-1.8.49 lib/facets/core/hash/assert_has_keys.rb
facets-1.8.51 lib/facets/core/hash/assert_has_keys.rb
facets-1.8.54 lib/facets/core/hash/assert_has_keys.rb
quarry-0.4.0 work/sandbox/testunit/assertions/assert_has_keys.rb