Sha256: d0ded709068d0978936cd3350638f2c87c983f7fb5f7fc57a6c47c9368f8b6f4
Contents?: true
Size: 867 Bytes
Versions: 48
Compression:
Stored size: 867 Bytes
Contents
require File.join(File.dirname(__FILE__), "..", "..", "test_helper") require 'mocha/parameter_matchers/any_of' require 'mocha/inspect' require 'stub_matcher' class AnyOfTest < Test::Unit::TestCase include Mocha::ParameterMatchers def test_should_match_if_any_matchers_match matcher = any_of(Stub::Matcher.new(false), Stub::Matcher.new(true), Stub::Matcher.new(false)) assert matcher == 'any_old_value' end def test_should_not_match_if_no_matchers_match matcher = any_of(Stub::Matcher.new(false), Stub::Matcher.new(false), Stub::Matcher.new(false)) assert matcher != 'any_old_value' end def test_should_describe_matcher matcher = any_of(Stub::Matcher.new(false), Stub::Matcher.new(true), Stub::Matcher.new(false)) assert_equal 'any_of(matcher(false), matcher(true), matcher(false))', matcher.mocha_inspect end end
Version data entries
48 entries across 48 versions & 3 rubygems