Coverage for vcr.matchers : 70%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
return r1.host == r2.host
return r1.scheme == r2.scheme
return r1.port == r2.port
return r1.path == r2.path
return r1.query == r2.query
if hasattr(r1.body, 'read') and hasattr(r2.body, 'read'): return r1.body.read() == r2.body.read() return r1.body == r2.body
return r1.headers == r2.headers
"Requests {0} and {1} differ according to " "the following matchers: {2}".format(r1, r2, differences) )
|