Skip to content

Instantly share code, notes, and snippets.

@kincorvia
kincorvia / gist:4540489
Created January 15, 2013 17:54
VCR Depecrations
# Typically in Rails to use VCR we setup the RSpec config like so:
RSpec.configure do |config|
config.extend VCR::RSpec::Macros #deprecated
end
# This gives us access to the use_vcr_cassette method:
describe Reviewed::Article do
use_vcr_cassette 'article/grill'
end