[1.3.X] Fixes #15975 -- Test failure in model validation tests due to us now having https://www.djangoproject.com
Backport of r16163 from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16164 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
64e625b6a1
commit
d06531d3f0
|
@ -58,11 +58,11 @@ class BaseModelValidationTests(ValidationTestCase):
|
||||||
self.assertFieldFailsValidationWithMessage(mtv.full_clean, 'url', [u'This URL appears to be a broken link.'])
|
self.assertFieldFailsValidationWithMessage(mtv.full_clean, 'url', [u'This URL appears to be a broken link.'])
|
||||||
|
|
||||||
def test_correct_url_value_passes(self):
|
def test_correct_url_value_passes(self):
|
||||||
mtv = ModelToValidate(number=10, name='Some Name', url='http://www.djangoproject.com/')
|
mtv = ModelToValidate(number=10, name='Some Name', url='http://www.example.com/')
|
||||||
self.assertEqual(None, mtv.full_clean()) # This will fail if there's no Internet connection
|
self.assertEqual(None, mtv.full_clean()) # This will fail if there's no Internet connection
|
||||||
|
|
||||||
def test_correct_https_url_but_nonexisting(self):
|
def test_correct_https_url_but_nonexisting(self):
|
||||||
mtv = ModelToValidate(number=10, name='Some Name', url='https://www.djangoproject.com/')
|
mtv = ModelToValidate(number=10, name='Some Name', url='https://www.example.com/')
|
||||||
self.assertFieldFailsValidationWithMessage(mtv.full_clean, 'url', [u'This URL appears to be a broken link.'])
|
self.assertFieldFailsValidationWithMessage(mtv.full_clean, 'url', [u'This URL appears to be a broken link.'])
|
||||||
|
|
||||||
def test_correct_ftp_url_but_nonexisting(self):
|
def test_correct_ftp_url_but_nonexisting(self):
|
||||||
|
|
Loading…
Reference in New Issue