Last Updated: February 25, 2016
·
632
· swarut

Repeating same request with VCR

I just discover that to use VCR (in rails) to repeat the same request, I have to add another option to the use_cassette() method

VCR.use_cassette('facebook', :allow_playback_repeats => true) do
  ....
end

woooo!