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

allow match_on to be passed as an argument VCR

This commit is contained in:
Hector Dearman
2013-09-21 21:47:27 +01:00
committed by Kevin McCarthy
parent 912452e863
commit c03459e582
2 changed files with 15 additions and 2 deletions

View File

@@ -34,3 +34,14 @@ def test_override_set_cassette_library_dir(tmpdir):
assert os.path.exists(str(tmpdir.join('subdir2').join('test.json')))
assert not os.path.exists(str(tmpdir.join('subdir').join('test.json')))
def test_override_match_on(tmpdir):
my_vcr = vcr.VCR(match_on=['method'])
with my_vcr.use_cassette(str(tmpdir.join('test.json'))) as cass:
urllib2.urlopen('http://httpbin.org/')
urllib2.urlopen('http://httpbin.org/get')
assert len(cass) == 1
assert cass.play_count == 1

View File

@@ -8,9 +8,11 @@ class VCR(object):
def __init__(self,
serializer='yaml',
cassette_library_dir=None,
record_mode="once"):
record_mode="once",
match_on=['url','method'],
):
self.serializer = serializer
self.match_on = ['url', 'method']
self.match_on = match_on
self.cassette_library_dir = cassette_library_dir
self.serializers = {
'yaml': yamlserializer,