Sha256: 4249e18be8699d3947e4ada1d73a6ad93a3e608e6a34c926b8e0b25bce50a74d

Contents?: true

Size: 870 Bytes

Versions: 48

Compression:

Stored size: 870 Bytes

Contents

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

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

class AllOfTest < Test::Unit::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 == '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 != '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

48 entries across 48 versions & 3 rubygems

Version Path
redcar-dev-0.12.1dev-java lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-dev-0.12.0dev-java lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.11 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.11.0dev lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.10 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.9.2 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.9.1 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.9.0 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.8.1 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.8 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.7 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.6.1 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.6 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.6.1dev lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.5.1 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.5 lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.5.6dev lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.5.5dev lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.5.4dev lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb
redcar-0.5.3dev lib/openssl/mocha/test/unit/parameter_matchers/all_of_test.rb