Here are the examples of the python api django.utils.six.moves.http_client.BAD_REQUEST taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
3
Example 1
def test_handles_invalid_payment_forms(self):
payment_details = self.reach_payment_details_page(is_guest=True)
form = payment_details.forms['sensible_data']
# payment forms should use the preview URL not the payment details URL
form.action = reverse('checkout:payment-details')
self.assertEqual(form.submit(status="*").status_code, http_client.BAD_REQUEST)