@@ -35,7 +35,7 @@ class M(GetMixin, FakeManager):
3535url = url ,
3636json = {"id" :42 ,"foo" :"bar" },
3737status = 200 ,
38- match_querystring = True ,
38+ match = [ responses . matchers . query_param_matcher ({})] ,
3939 )
4040
4141mgr = M (gl )
@@ -57,7 +57,7 @@ class TestClass(RefreshMixin, FakeObject):
5757url = url ,
5858json = {"id" :42 ,"foo" :"bar" },
5959status = 200 ,
60- match_querystring = True ,
60+ match = [ responses . matchers . query_param_matcher ({})] ,
6161 )
6262
6363mgr = FakeManager (gl )
@@ -80,7 +80,7 @@ class M(GetWithoutIdMixin, FakeManager):
8080url = url ,
8181json = {"foo" :"bar" },
8282status = 200 ,
83- match_querystring = True ,
83+ match = [ responses . matchers . query_param_matcher ({})] ,
8484 )
8585
8686mgr = M (gl )
@@ -102,7 +102,7 @@ class M(ListMixin, FakeManager):
102102url = url ,
103103json = [{"id" :42 ,"foo" :"bar" }, {"id" :43 ,"foo" :"baz" }],
104104status = 200 ,
105- match_querystring = True ,
105+ match = [ responses . matchers . query_param_matcher ({})] ,
106106 )
107107
108108# test RESTObjectList
@@ -134,7 +134,7 @@ class M(ListMixin, FakeManager):
134134url = url ,
135135json = [{"id" :42 ,"foo" :"bar" }],
136136status = 200 ,
137- match_querystring = True ,
137+ match = [ responses . matchers . query_param_matcher ({})] ,
138138 )
139139
140140mgr = M (gl )
@@ -177,7 +177,7 @@ class M(CreateMixin, FakeManager):
177177url = url ,
178178json = {"id" :42 ,"foo" :"bar" },
179179status = 200 ,
180- match_querystring = True ,
180+ match = [ responses . matchers . query_param_matcher ({})] ,
181181 )
182182
183183mgr = M (gl )
@@ -202,7 +202,7 @@ class M(CreateMixin, FakeManager):
202202url = url ,
203203json = {"id" :42 ,"foo" :"bar" },
204204status = 200 ,
205- match_querystring = True ,
205+ match = [ responses . matchers . query_param_matcher ({})] ,
206206 )
207207
208208mgr = M (gl )
@@ -243,7 +243,7 @@ class M(UpdateMixin, FakeManager):
243243url = url ,
244244json = {"id" :42 ,"foo" :"baz" },
245245status = 200 ,
246- match_querystring = True ,
246+ match = [ responses . matchers . query_param_matcher ({})] ,
247247 )
248248
249249mgr = M (gl )
@@ -268,7 +268,7 @@ class M(UpdateMixin, FakeManager):
268268url = url ,
269269json = {"foo" :"baz" },
270270status = 200 ,
271- match_querystring = True ,
271+ match = [ responses . matchers . query_param_matcher ({})] ,
272272 )
273273
274274mgr = M (gl )
@@ -289,7 +289,7 @@ class M(DeleteMixin, FakeManager):
289289url = url ,
290290json = "" ,
291291status = 200 ,
292- match_querystring = True ,
292+ match = [ responses . matchers . query_param_matcher ({})] ,
293293 )
294294
295295mgr = M (gl )
@@ -311,7 +311,7 @@ class TestClass(SaveMixin, base.RESTObject):
311311url = url ,
312312json = {"id" :42 ,"foo" :"baz" },
313313status = 200 ,
314- match_querystring = True ,
314+ match = [ responses . matchers . query_param_matcher ({})] ,
315315 )
316316
317317mgr = M (gl )
@@ -334,7 +334,7 @@ class M(SetMixin, FakeManager):
334334url = url ,
335335json = {"key" :"foo" ,"value" :"bar" },
336336status = 200 ,
337- match_querystring = True ,
337+ match = [ responses . matchers . query_param_matcher ({})] ,
338338 )
339339
340340mgr = M (gl )