Skip to content

Instantly share code, notes, and snippets.

@mjc-gh
Created September 12, 2011 19:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjc-gh/1212114 to your computer and use it in GitHub Desktop.
Save mjc-gh/1212114 to your computer and use it in GitHub Desktop.
VCR and MiniTest
describe "Something" do
before do
# __name__ defined in MiniTest::Unit::TestCase
VCR.insert_cassette(__name__)
end
after do
VCR.eject_cassette
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment