Sha256: b53b31b67aeb396d2cdaed95880a577069bb73a5b4239c6f04664aa386a17ac3
Contents?: true
Size: 684 Bytes
Versions: 44
Compression:
Stored size: 684 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
44 entries across 36 versions & 3 rubygems