Sha256: 56e6cb126b2492718f410087ea56dfba780cc0846ba1ea4287b4c1b5c431cd19
Contents?: true
Size: 865 Bytes
Versions: 17
Compression:
Stored size: 865 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
17 entries across 14 versions & 4 rubygems