Sha256: e9875ed26461912daf325b0b7ca48bf99ab68bac88fe740747239a89e4d4d7a7
Contents?: true
Size: 703 Bytes
Versions: 45
Compression:
Stored size: 703 Bytes
Contents
require File.join(File.dirname(__FILE__), "..", "..", "test_helper") 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
45 entries across 45 versions & 9 rubygems