当前位置

网站首页> 程序设计 > 开源项目 > 编程语言 > 浏览文章

HTTP 交互模拟库 VCR.py

作者:小梦 来源: 网络 时间: 2024-06-19 阅读:

VCR.py 可自动化的模拟你的 HTTP 交互来简化和加速测试。VCR.py 是 Ruby 版本的 VCR 的 Python 移植版本。

使用方法:

import vcrimport urllib2with vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml'):    response = urllib2.urlopen('http://www.iana.org/domains/reserved').read()    assert 'Example domains' in response

相关阅读

热点阅读

网友最爱