Sha256: 323a47c76053b23882eb758357b0977690d4ac1be525cd10d137c077dfc159ae
Contents?: true
Size: 740 Bytes
Versions: 48
Compression:
Stored size: 740 Bytes
Contents
require File.join(File.dirname(__FILE__), "..", "..", "test_helper") require 'mocha/parameter_matchers/has_entry' require 'mocha/inspect' class HasEntryTest < Test::Unit::TestCase include Mocha::ParameterMatchers def test_should_match_hash_including_specified_entry matcher = has_entry(:key_1, 'value_1') assert matcher == { :key_1 => 'value_1', :key_2 => 'value_2' } end def test_should_not_match_hash_not_including_specified_entry matcher = has_entry(:key_1, 'value_2') assert matcher != { :key_1 => 'value_1', :key_2 => 'value_2' } end def test_should_describe_matcher matcher = has_entry(:key_1, 'value_1') assert_equal "has_entry(:key_1, 'value_1')", matcher.mocha_inspect end end
Version data entries
48 entries across 48 versions & 3 rubygems