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

Added query to Request with matcher and test

This commit is contained in:
Max Shytikov
2014-04-07 01:30:31 +02:00
parent 6b060e5666
commit 9b188e986f
3 changed files with 22 additions and 0 deletions

View File

@@ -21,6 +21,10 @@ def path(r1, r2):
return r1.path == r2.path
def query(r1, r2):
return r1.query == r2.query
def body(r1, r2):
return r1.body == r2.body