Add tests for domains app

Add missing tests for domains.forms and domains.models.
This commit is contained in:
Jan Dittberner 2015-10-15 19:50:18 +00:00
parent 7d7a8941c3
commit f5759f3194
4 changed files with 186 additions and 4 deletions

View file

@ -27,7 +27,7 @@ class DomainBase(TimeStampedModel):
abstract = True
def __str__(self):
return self.name
return self.domain
@python_2_unicode_compatible