Fix a couple of typos in test names and descriptions.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13821 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
767cf13d76
commit
3d99526fc2
|
@ -33,7 +33,7 @@ class BaseModelValidationTests(ValidationTestCase):
|
||||||
mtv = ModelToValidate(number=10, name='Some Name', parent_id=parent.pk)
|
mtv = ModelToValidate(number=10, name='Some Name', parent_id=parent.pk)
|
||||||
self.assertEqual(None, mtv.full_clean())
|
self.assertEqual(None, mtv.full_clean())
|
||||||
|
|
||||||
def test_limitted_FK_raises_error(self):
|
def test_limited_FK_raises_error(self):
|
||||||
# The limit_choices_to on the parent field says that a parent object's
|
# The limit_choices_to on the parent field says that a parent object's
|
||||||
# number attribute must be 10, so this should fail validation.
|
# number attribute must be 10, so this should fail validation.
|
||||||
parent = ModelToValidate.objects.create(number=11, name='Other Name')
|
parent = ModelToValidate.objects.create(number=11, name='Other Name')
|
||||||
|
@ -60,7 +60,7 @@ class BaseModelValidationTests(ValidationTestCase):
|
||||||
mtv = ModelToValidate(number=10, name='Some Name', url='http://www.djangoproject.com/')
|
mtv = ModelToValidate(number=10, name='Some Name', url='http://www.djangoproject.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_text_greater_that_charfields_max_length_eaises_erros(self):
|
def test_text_greater_that_charfields_max_length_raises_erros(self):
|
||||||
mtv = ModelToValidate(number=10, name='Some Name'*100)
|
mtv = ModelToValidate(number=10, name='Some Name'*100)
|
||||||
self.assertFailsValidation(mtv.full_clean, ['name',])
|
self.assertFailsValidation(mtv.full_clean, ['name',])
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ class QueryTestCase(TestCase):
|
||||||
multi_db = True
|
multi_db = True
|
||||||
|
|
||||||
def test_db_selection(self):
|
def test_db_selection(self):
|
||||||
"Check that querysets will use the default databse by default"
|
"Check that querysets will use the default database by default"
|
||||||
self.assertEquals(Book.objects.db, DEFAULT_DB_ALIAS)
|
self.assertEquals(Book.objects.db, DEFAULT_DB_ALIAS)
|
||||||
self.assertEquals(Book.objects.all().db, DEFAULT_DB_ALIAS)
|
self.assertEquals(Book.objects.all().db, DEFAULT_DB_ALIAS)
|
||||||
|
|
||||||
|
@ -1221,7 +1221,7 @@ class RouterTestCase(TestCase):
|
||||||
|
|
||||||
mark = Person.objects.using('default').create(pk=2, name="Mark Pilgrim")
|
mark = Person.objects.using('default').create(pk=2, name="Mark Pilgrim")
|
||||||
|
|
||||||
# Now save back onto the usual databse.
|
# Now save back onto the usual database.
|
||||||
# This simulates master/slave - the objects exist on both database,
|
# This simulates master/slave - the objects exist on both database,
|
||||||
# but the _state.db is as it is for all other tests.
|
# but the _state.db is as it is for all other tests.
|
||||||
pro.save(using='default')
|
pro.save(using='default')
|
||||||
|
|
Loading…
Reference in New Issue