Sha256: c841c47a4307ccdbf7461fd2f8a044e8c40b4a98492b7efb0a16548fd356a87e

Contents?: true

Size: 1.73 KB

Versions: 5

Compression:

Stored size: 1.73 KB

Contents

require File.expand_path('../../../test_helper', __FILE__)

require 'mocha/parameter_matchers/has_value'
require 'mocha/parameter_matchers/object'
require 'mocha/parameter_matchers/equals'
require 'mocha/inspect'

class HasValueTest < Mocha::TestCase
  include Mocha::ParameterMatchers

  def test_should_match_hash_including_specified_value
    matcher = has_value('value_1')
    assert matcher.matches?([{ :key_1 => 'value_1', :key_2 => 'value_2' }])
  end

  def test_should_not_match_hash_not_including_specified_value
    matcher = has_value('value_1')
    assert !matcher.matches?([{ :key_2 => 'value_2' }])
  end

  def test_should_describe_matcher
    matcher = has_value('value_1')
    assert_equal %{has_value("value_1")}, matcher.mocha_inspect
  end

  def test_should_match_hash_including_specified_value_with_nested_value_matcher
    matcher = has_value(equals('value_1'))
    assert matcher.matches?([{ :key_1 => 'value_1', :key_2 => 'value_2' }])
  end

  def test_should_not_match_hash_not_including_specified_value_with_nested_value_matcher
    matcher = has_value(equals('value_1'))
    assert !matcher.matches?([{ :key_2 => 'value_2' }])
  end

  def test_should_not_raise_error_on_empty_arguments
    matcher = has_value('value_1')
    assert_nothing_raised { matcher.matches?([]) }
  end

  def test_should_not_match_empty_arguments
    matcher = has_value('value_1')
    assert !matcher.matches?([])
  end

  def test_should_not_raise_error_on_argument_that_does_not_respond_to_values
    matcher = has_value('value_1')
    assert_nothing_raised { matcher.matches?(['value_1']) }
  end

  def test_should_not_match_on_argument_that_does_not_respond_to_values
    matcher = has_value('value_1')
    assert !matcher.matches?(['value_1'])
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
mocha-1.9.0 test/unit/parameter_matchers/has_value_test.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/mocha-1.8.0/test/unit/parameter_matchers/has_value_test.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/mocha-1.8.0/test/unit/parameter_matchers/has_value_test.rb
mocha-1.8.0 test/unit/parameter_matchers/has_value_test.rb
mocha-1.7.0 test/unit/parameter_matchers/has_value_test.rb