Hi, I've a problem with unittest in django:

I've described a models.py:

    class Season(models.Model):
        name = models.CharField(max_length=30, unique=True)
        startDate = models.DateField("From")
        endDate = models.DateField("To")

and the test.py:

    def testSeasonCreateEmpty(self):
        self.assertRaises(IntegrityError, Season.objects.create,
                               startDate="2009-01-01",
                               endDate="2009-01-01")
        transaction.rollback()

when i run from console: python manage.py test, the test fails with
message:
"AssertionError: IntegrityError not raised"

Why it doesn't raise exception for a season object without a name??


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to