1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00
Files
vcrpy/vcr/__init__.py
Dan Lecocq b488ca67fe Substantial refactoring
This refactoring includes some PEP-8 compliance changes, as well as some more
complete testing to ensure that we're in fact serving everything out of
cassettes when we thing we are.

Incidentally, it also includes fixes for #3 and #4
2013-08-11 15:05:39 -10:00

7 lines
184 B
Python

# Import Cassette to make it available at the top level
from .cassette import Cassette
# Also, make a 'load' function available
def use_cassette(path):
return Cassette.load(path)