diff --git a/README.rst b/README.rst index 5589608..93fb8be 100644 --- a/README.rst +++ b/README.rst @@ -2,6 +2,9 @@ django-model-utils ================== +.. image:: https://secure.travis-ci.org/carljm/django-model-utils.png + :target: http://travis-ci.org/carljm/django-model-utils + Django model mixins and utilities. Installation diff --git a/model_utils/tests/models.py b/model_utils/tests/models.py index 9e2cfe7..0513a45 100644 --- a/model_utils/tests/models.py +++ b/model_utils/tests/models.py @@ -191,7 +191,7 @@ class AbidingManager(PassThroughManager): class Dude(models.Model): abides = models.BooleanField(default=True) name = models.CharField(max_length=20) - has_rug = models.BooleanField() + has_rug = models.BooleanField(default=False) objects = PassThroughManager(DudeQuerySet) abiders = AbidingManager()