Sha256: 315d38ba73baeeaef028e777a4143199a47734c04ba7d64c178565371b86db66

Contents?: true

Size: 1.58 KB

Versions: 3

Compression:

Stored size: 1.58 KB

Contents

require File.join(File.dirname(__FILE__), "..", "..", "test_helper")

require 'mocha/parameter_matchers/has_key'
require 'mocha/parameter_matchers/object'
require 'mocha/inspect'

class HasKeyTest < Test::Unit::TestCase
  
  include Mocha::ParameterMatchers
  
  def test_should_match_hash_including_specified_key
    matcher = has_key(:key_1)
    assert matcher.matches?([{ :key_1 => 1, :key_2 => 2 }])
  end
  
  def test_should_not_match_hash_not_including_specified_key
    matcher = has_key(:key_1)
    assert !matcher.matches?([{ :key_2 => 2 }])
  end
  
  def test_should_describe_matcher
    matcher = has_key(:key)
    assert_equal 'has_key(:key)', matcher.mocha_inspect
  end
  
  def test_should_match_hash_including_specified_key_with_nested_key_matcher
    matcher = has_key(equals(:key_1))
    assert matcher.matches?([{ :key_1 => 1, :key_2 => 2 }])
  end
  
  def test_should_not_match_hash_not_including_specified_key_with_nested_key_matcher
    matcher = has_key(equals(:key_1))
    assert !matcher.matches?([{ :key_2 => 2 }])
  end
  
  def test_should_not_raise_error_on_empty_arguments
    matcher = has_key(:key)
    assert_nothing_raised { matcher.matches?([]) }
  end
  
  def test_should_not_match_on_empty_arguments
    matcher = has_key(:key)
    assert !matcher.matches?([])
  end
  
  def test_should_not_raise_error_on_argument_that_does_not_respond_to_keys
    matcher = has_key(:key)
    assert_nothing_raised { matcher.matches?([:key]) }
  end
  
  def test_should_not_match_on_argument_that_does_not_respond_to_keys
    matcher = has_key(:key)
    assert !matcher.matches?([:key])
  end
end

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
mocha-macruby-0.9.8.20100129120100 test/unit/parameter_matchers/has_key_test.rb
mcmire-mocha-0.9.8 test/unit/parameter_matchers/has_key_test.rb
mocha-0.9.8 test/unit/parameter_matchers/has_key_test.rb