1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 01:25:34 +00:00

make config options actually do stuff

This commit is contained in:
Kevin McCarthy
2013-08-19 19:12:32 -10:00
parent 9073cf137e
commit 1478ce82fd
4 changed files with 35 additions and 20 deletions

View File

@@ -116,12 +116,12 @@ import vcr
MySerializer(object):
"""
Must implement serialize() and deserialize() functions
Must implement serialize() and deserialize() classmethods
"""
pass
my_vcr = VCR()
my_vcr.register_serializer(MySerializer)
my_vcr.register_serializer('my', MySerializer)
```
##Installation