Sha256: 76c053985823509390def0c28d7ba3f04d872cdfe7da86fb32871a98de05f8fe
Contents?: true
Size: 553 Bytes
Versions: 56
Compression:
Stored size: 553 Bytes
Contents
require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper") module RR module WildcardMatchers describe HashIncluding do describe "#inspect" do it "returns hash_including with expected key/values" do expected_hash = {:foo => "bar", :baz => "qux"} matcher = HashIncluding.new(expected_hash) matcher.inspect.should include("hash_including(") matcher.inspect.should include(':foo=>"bar"') matcher.inspect.should include(':baz=>"qux"') end end end end end
Version data entries
56 entries across 52 versions & 9 rubygems