Merge branch 'feature/domains_tests'

This commit is contained in:
Jan Dittberner 2014-06-01 16:47:47 +02:00
commit b4a5e6c86b
3 changed files with 10 additions and 4 deletions

View File

@ -1,7 +1,8 @@
Changelog
=========
* :feature:`-` initial test suite for models
* :feature:`-` full test suite for domains app
* :feature:`-` full test suite for osusers.models
* :feature:`-` `Celery <http://www.celeryproject.com/>`_ integration for ldap
synchronization

View File

@ -0,0 +1,8 @@
from django.test import TestCase
from django.core.urlresolvers import reverse
class TestMailDomainAdmin(TestCase):
def test_admin_for_maildomain(self):
admin_url = reverse('admin:domains_maildomain_changelist')
self.assertIsNotNone(admin_url)

View File

@ -1,3 +0,0 @@
from django.shortcuts import render
# Create your views here.