我正在测试一个基于 json 的方法。该方法采用 json 数组列表。当 json 数组按顺序出现时,该方法工作正常,而当数组随机化时,该方法会中断。它不会对所有随机案例都失败。所以,失败时我想保存 json 数组的值。有没有办法做到这一点?
describe 'when the flat hash comes in random order' do
it 'knows how to create the parent nodes first' do
do_stuff_and_validate(@flat_hash[:nodeList].shuffle!)
end
end