Sha256: 074b1dde8113b26726331ac065539589a3bf6d9131c8d75acd0d6a1089ae3713

Contents?: true

Size: 863 Bytes

Versions: 13

Compression:

Stored size: 863 Bytes

Contents

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

require 'mocha/parameter_matchers/all_of'
require 'mocha/inspect'
require 'stub_matcher'

class AllOfTest < Mocha::TestCase
  include Mocha::ParameterMatchers

  def test_should_match_if_all_matchers_match
    matcher = all_of(Stub::Matcher.new(true), Stub::Matcher.new(true), Stub::Matcher.new(true))
    assert matcher.matches?(['any_old_value'])
  end

  def test_should_not_match_if_any_matcher_does_not_match
    matcher = all_of(Stub::Matcher.new(true), Stub::Matcher.new(false), Stub::Matcher.new(true))
    assert !matcher.matches?(['any_old_value'])
  end

  def test_should_describe_matcher
    matcher = all_of(Stub::Matcher.new(true), Stub::Matcher.new(false), Stub::Matcher.new(true))
    assert_equal 'all_of(matcher(true), matcher(false), matcher(true))', matcher.mocha_inspect
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
mocha-1.11.2 test/unit/parameter_matchers/all_of_test.rb
mocha-1.11.1 test/unit/parameter_matchers/all_of_test.rb
mocha-1.11.0 test/unit/parameter_matchers/all_of_test.rb
mocha-1.10.2 test/unit/parameter_matchers/all_of_test.rb
mocha-1.10.1 test/unit/parameter_matchers/all_of_test.rb
mocha-1.10.0 test/unit/parameter_matchers/all_of_test.rb
mocha-1.10.0.beta.1 test/unit/parameter_matchers/all_of_test.rb
mocha-1.10.0.alpha test/unit/parameter_matchers/all_of_test.rb
mocha-1.9.0 test/unit/parameter_matchers/all_of_test.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/mocha-1.8.0/test/unit/parameter_matchers/all_of_test.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/mocha-1.8.0/test/unit/parameter_matchers/all_of_test.rb
mocha-1.8.0 test/unit/parameter_matchers/all_of_test.rb
mocha-1.7.0 test/unit/parameter_matchers/all_of_test.rb