#!/usr/bin/env python3
 
-""" Summary not created yet
-
-Details on what happens here should be specified here but please keep it brief!
-
-.. codeauthor:: Intra2net AG <info@intra2net.com>
-"""
+"""Unittests for class MailValidator."""
 
 import os
 import unittest
 
 
 class MailUtilsValidatorTest(unittest.TestCase):
-    """Tests methods of :py:class:`mail_validator.MailValidator`."""
+    """
+    Tests methods of :py:class:`mail_validator.MailValidator`
+
+    Testing mail sending/"injecting" requires a mock smtp/imap server,
+    therefore not included yet.
+    ."""
 
     def setUp(self):
         os.mkdir("srcdir")