标签: recursion rspec matching approximate
在RSpec中,我可以这样做:
[1, 2, 3].should =~ [2, 3, 1]
是否有内置的方法来递归近似?例如:
x = [ [1, 2], [3, 4] ] y = [ [4, 3], [2, 1] ] x.should =~ y
如果没有内置方式,我意识到我可以(而且会)自己写这个。