我正在使用黄瓜来测试场景。我收到错误消息:
表不相同(Cucumber::Ast::Table::Different)
diff!
在我的代码中使用时。
Then /^the results should be:$/ do |expected_results|
results = [['content']] + page.all('ol.results li').map do |li|
[li.text]
end
expected_results.diff!(results)
end
我还参考了大多数与这些问题相关的网站,因为使用transpose
之前的diff!
方法我没有成功。另外,我关注了https://github.com/cucumber/cucumber/issues/220,但对这个错误没有影响。谁能定义我如何解决这个错误?