mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
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
7 lines
184 B
Python
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)
|