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

Merge pull request #173 from graingert/patch-2

Fix before_record_reponse doc
This commit is contained in:
Kevin McCarthy
2015-07-16 07:28:25 -10:00

View File

@@ -419,10 +419,10 @@ that of ``before_record``:
def scrub_string(string, replacement=''): def scrub_string(string, replacement=''):
def before_record_reponse(response): def before_record_reponse(response):
return response['body']['string'] = response['body']['string'].replace(string, replacement) return response['body']['string'] = response['body']['string'].replace(string, replacement)
return scrub_string return before_record_reponse
my_vcr = vcr.VCR( my_vcr = vcr.VCR(
before_record=scrub_string(settings.USERNAME, 'username'), before_record_reponse=scrub_string(settings.USERNAME, 'username'),
) )
with my_vcr.use_cassette('test.yml'): with my_vcr.use_cassette('test.yml'):
# your http code here # your http code here