Example #1
0
 def check_missing_field_on_post(self, field):
     error = e.missing_parameters(field)
     response = client.post(self.url, {})
     response.assert_match(400, error)
Example #2
0
 def check_missing_field_on_post(self, field):
     error = e.missing_parameters(field)
     response = client.post(self.url, {})
     response.assert_match(400, error)
Example #3
0
 def post_resource(self, parameters):
     response = client.post(self.url, parameters)
     return response
Example #4
0
 def post_resource(self, parameters):
     response = client.post(self.url, parameters)
     return response