我有两个包含数组的哈希。就我而言,数组元素的顺序并不重要。有没有一种简单的方法来匹配 RSpec2 中的此类哈希?
{ a: [1, 2] }.should == { a: [2, 1] } # how to make it pass?
附言
有一个数组匹配器,它忽略了顺序。
[1, 2].should =~ [2, 1] # Is there a similar matcher for hashes?
解决方案
该解决方案对我有用。最初由 tokland 建议,有修复。
RSpec::Matchers.define :match_hash do |expected|
match do |actual|
matches_hash?(expected, actual)
end
end
def matches_hash?(expected, actual)
matches_array?(expected.keys, actual.keys) &&
actual.all? { |k, xs| matches_array?(expected[k], xs) }
end
def matches_array?(expected, actual)
return expected == actual unless expected.is_a?(Array) && actual.is_a?(Array)
RSpec::Matchers::BuiltIn::MatchArray.new(expected).matches? actual
end
要使用匹配器:
{a: [1, 2]}.should match_hash({a: [2, 1]})