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.

test_field.py 241B

1234567891011
  1. from django.test import TestCase
  2. from oscar.forms import fields
  3. class TestExtendedURLField(TestCase):
  4. """ExtendedURLField"""
  5. def test_validates_local_urls(self):
  6. field = fields.ExtendedURLField()
  7. field.clean("/")