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

Adds a test to ensure that the cassette created with "new_episodes" has different expected behavior when opened with "once".

This commit is contained in:
Nithin Reddy
2014-11-21 09:47:28 -08:00
parent 5162d183e5
commit 2a128893cc

View File

@@ -87,6 +87,22 @@ def test_new_episodes_record_mode_two_times(tmpdir):
response = urlopen('http://httpbin.org/').read()
def test_once_mode_after_new_episodes(tmpdir):
testfile = str(tmpdir.join('recordmode.yml'))
with vcr.use_cassette(testfile, record_mode="new_episodes"):
# cassette file doesn't exist, so create.
response1 = urlopen('http://httpbin.org/').read()
with vcr.use_cassette(testfile, record_mode="once") as cass:
# make the same request again
response = urlopen('http://httpbin.org/').read()
# now that we are back in once mode, this should raise
# an error.
with pytest.raises(Exception):
response = urlopen('http://httpbin.org/').read()
def test_all_record_mode(tmpdir):
testfile = str(tmpdir.join('recordmode.yml'))