You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

form_tests.py 314B

123456789101112
  1. from django.test import TestCase
  2. from oscar.apps.payment import forms
  3. class BankcardNumberFieldTest(TestCase):
  4. def setUp(self):
  5. self.field = forms.BankcardNumberField()
  6. def test_spaces_are_stipped(self):
  7. self.assertEquals('4111111111111111', self.field.clean(' 4111 1111 1111 1111'))