1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 09:13:23 +00:00

Merge pull request #302 from AartGoossens/feature/before_record_docs_fix

Improves docs for before_record_request
This commit is contained in:
Kevin McCarthy
2017-03-16 08:55:34 -10:00
committed by GitHub

View File

@@ -222,7 +222,7 @@ Custom Request filtering
If none of these covers your request filtering needs, you can register a If none of these covers your request filtering needs, you can register a
callback that will manipulate the HTTP request before adding it to the callback that will manipulate the HTTP request before adding it to the
cassette. Use the ``before_record`` configuration option to so this. cassette. Use the ``before_record_request`` configuration option to so this.
Here is an example that will never record requests to the /login Here is an example that will never record requests to the /login
endpoint. endpoint.
@@ -233,7 +233,7 @@ endpoint.
return request return request
my_vcr = vcr.VCR( my_vcr = vcr.VCR(
before_record = before_record_cb, before_record_request = before_record_cb,
) )
with my_vcr.use_cassette('test.yml'): with my_vcr.use_cassette('test.yml'):
# your http code here # your http code here
@@ -250,7 +250,7 @@ path.
return request return request
my_vcr = vcr.VCR( my_vcr = vcr.VCR(
before_record=scrub_login_request, before_record_request=scrub_login_request,
) )
with my_vcr.use_cassette('test.yml'): with my_vcr.use_cassette('test.yml'):
# your http code here # your http code here