我有一个应用程序显示一些内容,然后选择一个随机记录并显示它
我该如何测试?
Then /^I Should see the associated "([^']*)" "([^']*)"$/ do |type, elements|
elements.split(', ').each do |element|
page.should have_content element
end
end
显然失败了,因为它没有找到每条记录。如何验证仅存在一条记录?
谢谢