Merge branch 'feature/domains_tests'
This commit is contained in:
commit
b4a5e6c86b
3 changed files with 10 additions and 4 deletions
|
@ -1,7 +1,8 @@
|
||||||
Changelog
|
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
|
* :feature:`-` `Celery <http://www.celeryproject.com/>`_ integration for ldap
|
||||||
synchronization
|
synchronization
|
||||||
|
|
||||||
|
|
8
gnuviechadmin/domains/tests/test_admin.py
Normal file
8
gnuviechadmin/domains/tests/test_admin.py
Normal 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)
|
|
@ -1,3 +0,0 @@
|
||||||
from django.shortcuts import render
|
|
||||||
|
|
||||||
# Create your views here.
|
|
Loading…
Reference in a new issue