|
@@ -690,24 +690,24 @@ class TestValidatorEquality(TestCase):
|
|
|
|
|
|
def test_regex_equality(self):
|
|
|
self.assertEqual(
|
|
|
- RegexValidator(r"^(?:[a-z0-9\.\-]*)://"),
|
|
|
- RegexValidator(r"^(?:[a-z0-9\.\-]*)://"),
|
|
|
+ RegexValidator(r"^(?:[a-z0-9.-]*)://"),
|
|
|
+ RegexValidator(r"^(?:[a-z0-9.-]*)://"),
|
|
|
)
|
|
|
self.assertNotEqual(
|
|
|
- RegexValidator(r"^(?:[a-z0-9\.\-]*)://"),
|
|
|
- RegexValidator(r"^(?:[0-9\.\-]*)://"),
|
|
|
+ RegexValidator(r"^(?:[a-z0-9.-]*)://"),
|
|
|
+ RegexValidator(r"^(?:[0-9.-]*)://"),
|
|
|
)
|
|
|
self.assertEqual(
|
|
|
- RegexValidator(r"^(?:[a-z0-9\.\-]*)://", "oh noes", "invalid"),
|
|
|
- RegexValidator(r"^(?:[a-z0-9\.\-]*)://", "oh noes", "invalid"),
|
|
|
+ RegexValidator(r"^(?:[a-z0-9.-]*)://", "oh noes", "invalid"),
|
|
|
+ RegexValidator(r"^(?:[a-z0-9.-]*)://", "oh noes", "invalid"),
|
|
|
)
|
|
|
self.assertNotEqual(
|
|
|
- RegexValidator(r"^(?:[a-z0-9\.\-]*)://", "oh", "invalid"),
|
|
|
- RegexValidator(r"^(?:[a-z0-9\.\-]*)://", "oh noes", "invalid"),
|
|
|
+ RegexValidator(r"^(?:[a-z0-9.-]*)://", "oh", "invalid"),
|
|
|
+ RegexValidator(r"^(?:[a-z0-9.-]*)://", "oh noes", "invalid"),
|
|
|
)
|
|
|
self.assertNotEqual(
|
|
|
- RegexValidator(r"^(?:[a-z0-9\.\-]*)://", "oh noes", "invalid"),
|
|
|
- RegexValidator(r"^(?:[a-z0-9\.\-]*)://"),
|
|
|
+ RegexValidator(r"^(?:[a-z0-9.-]*)://", "oh noes", "invalid"),
|
|
|
+ RegexValidator(r"^(?:[a-z0-9.-]*)://"),
|
|
|
)
|
|
|
|
|
|
self.assertNotEqual(
|
|
@@ -721,7 +721,7 @@ class TestValidatorEquality(TestCase):
|
|
|
)
|
|
|
|
|
|
def test_regex_equality_nocache(self):
|
|
|
- pattern = r"^(?:[a-z0-9\.\-]*)://"
|
|
|
+ pattern = r"^(?:[a-z0-9.-]*)://"
|
|
|
left = RegexValidator(pattern)
|
|
|
re.purge()
|
|
|
right = RegexValidator(pattern)
|