Sha256: 3371df20aabd527af47594a91a7c09b17543483d69002a8958a24862e54c3ffe
Contents?: true
Size: 693 Bytes
Versions: 41
Compression:
Stored size: 693 Bytes
Contents
require File.expand_path('../../../test_helper', __FILE__) require 'mocha/parameter_matchers/responds_with' require 'mocha/inspect' class RespondsWithTest < Test::Unit::TestCase include Mocha::ParameterMatchers def test_should_match_parameter_responding_with_expected_value matcher = responds_with(:upcase, 'FOO') assert matcher.matches?(['foo']) end def test_should_not_match_parameter_responding_with_unexpected_value matcher = responds_with(:upcase, 'FOO') assert !matcher.matches?(['bar']) end def test_should_describe_matcher matcher = responds_with(:foo, :bar) assert_equal 'responds_with(:foo, :bar)', matcher.mocha_inspect end end
Version data entries
41 entries across 36 versions & 6 rubygems